Skip to content

Commit

Permalink
Minor improvement in Github action names (#2123)
Browse files Browse the repository at this point in the history
Motivation:
Our GitHub action names have some duplicate info when displayed
in PRB builds (e.g. `PR Builder / Build JDK 8 ubuntu-latest`)
and also not consistent between PRB and PRQ.
  • Loading branch information
Scottmitch authored Mar 1, 2022
1 parent 70d2a47 commit 609d3dc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-prb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
branches: [ main, '0.41', '0.42' ]
jobs:
build:
name: Build JDK ${{ matrix.java }} ${{ matrix.os }}
name: JDK ${{ matrix.java }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-prq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
branches: [ main, '0.41', '0.42' ]
jobs:
quality:
name: JDK ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ on: [push, pull_request]

jobs:
validation:
name: "Gradle wrapper validation"
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
Expand Down

0 comments on commit 609d3dc

Please sign in to comment.