Skip to content

Commit

Permalink
[ci skip] Improve workflow steps titles
Browse files Browse the repository at this point in the history
  • Loading branch information
dnestoro committed Oct 30, 2024
1 parent 2a338c9 commit f61dc30
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/check-new-library-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:
jobs:
get-all-libraries:
if: github.repository == 'oracle/graalvm-reachability-metadata'
name: "📋 Get list of all supported libraries"
name: "📋 Get list of all supported libraries with newer versions"
permissions: write-all
runs-on: "ubuntu-20.04"
timeout-minutes: 5
Expand All @@ -39,13 +39,13 @@ jobs:
id: set-matrix
run: |
./gradlew getExistingLibrariesWithNewVersions
- name: "Create branch"
- name: "🔨 Create branch"
run: |
git config --local user.email "[email protected]"
git config --local user.name "Github Actions"
git switch -C libraryVersionsDependabot/$(date '+%Y-%m-%d')
git push origin libraryVersionsDependabot/$(date '+%Y-%m-%d')
- name: "Create issue"
- name: "🔨 Create issue"
id: set-issue
run: |
git config --local user.email "[email protected]"
Expand Down Expand Up @@ -109,11 +109,11 @@ jobs:
export GVM_TCK_LV=$TESTING_VERSION
./gradlew test -Pcoordinates=${{ env.TEST_COORDINATES }}
- name: "New library is supported"
- name: "✔️ New library is supported"
if: success()
run: |
sh ./.github/workflows/tryPushVersionsUpdate.sh ${{ matrix.coordinates }} ${{ env.LATEST_VERSION }}
- name: "New library is not supported"
- name: "New library is not supported"
if: failure()
run: |
git config --local user.email "[email protected]"
Expand All @@ -133,7 +133,7 @@ jobs:
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v4
- name: "PR for supported versions"
- name: "✏️ PR for supported versions"
run: |
git config --local user.email "[email protected]"
git config --local user.name "Github Actions"
Expand Down

0 comments on commit f61dc30

Please sign in to comment.