We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfde6c5 commit eabd443Copy full SHA for eabd443
.github/workflows/power-acceptance-test.yml
@@ -16,6 +16,7 @@ jobs:
16
- name: Check if the user is allowed to trigger this workflow
17
id: check-permission
18
run: |
19
+ echo "REPO=${{ secrets.REPO }}" >> $GITHUB_ENV
20
# Fetch the GitHub actor (the user who triggered the action)
21
actor="${GITHUB_ACTOR}"
22
@@ -36,7 +37,7 @@ jobs:
36
37
acceptance-test:
38
needs: check-permissions
39
runs-on: ubuntu-latest
- if: ${{ needs.check-permissions.outputs.is_authorized == 'true' && github.repository == secrets.REPO }}
40
+ if: ${{ needs.check-permissions.outputs.is_authorized == 'true' && github.repository == env.REPO }}
41
42
steps:
43
# Step 1: Checkout code
0 commit comments