Skip to content

Commit 27da88e

Browse files
authored
ci(pr-check): Add names to steps in pr-check workflow (#88)
1 parent 2e0762f commit 27da88e

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/pr-check.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,14 @@ jobs:
3030
runs-on: ubuntu-latest
3131
timeout-minutes: 5
3232
steps:
33-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
33+
- name: Checkout repository
34+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
3435
with:
3536
persist-credentials: false
3637
sparse-checkout: .github/labeler.yaml
3738

38-
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # 5.0.0
39+
- name: Label PR
40+
uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # 5.0.0
3941
with:
4042
repo-token: ${{ secrets.GITHUB_TOKEN }}
4143
configuration-path: .github/labeler.yaml
@@ -44,19 +46,20 @@ jobs:
4446
name: Checks
4547
permissions:
4648
checks: read
47-
uses: 3ware/workflows/.github/workflows/wait-for-checks.yaml@ref/auto-approve # 4.14.1
49+
uses: 3ware/workflows/.github/workflows/wait-for-checks.yaml@48d83ea1c2248158f1b81f07532311f4417ae7e7
4850
secrets: inherit
4951

5052
auto-approve-pr:
5153
if: ${{ github.event_name == 'pull_request_target' && contains(github.event.pull_request.labels.*.name, 'auto-approve') }}
54+
name: Auto Approve PR
5255
needs: [enforce-all-checks]
5356
permissions:
5457
pull-requests: read
5558
runs-on: ubuntu-latest
5659
timeout-minutes: 5
5760
steps:
5861
- name: Dump PR event
59-
run: echo "${{ toJson(github.event) }}"
62+
run: echo '${{ toJson(github.event) }}'
6063
- name: Auto Approve PR
6164
uses: hmarr/auto-approve-action@f0939ea97e9205ef24d872e76833fa908a770363 # v4.0.0
6265
with:

0 commit comments

Comments
 (0)