Skip to content

Commit eabd443

Browse files
committed
Acceptance test: update repo
1 parent bfde6c5 commit eabd443

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/power-acceptance-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- name: Check if the user is allowed to trigger this workflow
1717
id: check-permission
1818
run: |
19+
echo "REPO=${{ secrets.REPO }}" >> $GITHUB_ENV
1920
# Fetch the GitHub actor (the user who triggered the action)
2021
actor="${GITHUB_ACTOR}"
2122
@@ -36,7 +37,7 @@ jobs:
3637
acceptance-test:
3738
needs: check-permissions
3839
runs-on: ubuntu-latest
39-
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 }}
4041

4142
steps:
4243
# Step 1: Checkout code

0 commit comments

Comments
 (0)