Skip to content

Commit

Permalink
Acceptance test: update repo
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkad committed Dec 9, 2024
1 parent bfde6c5 commit eabd443
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/power-acceptance-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- name: Check if the user is allowed to trigger this workflow
id: check-permission
run: |
echo "REPO=${{ secrets.REPO }}" >> $GITHUB_ENV
# Fetch the GitHub actor (the user who triggered the action)
actor="${GITHUB_ACTOR}"
Expand All @@ -36,7 +37,7 @@ jobs:
acceptance-test:
needs: check-permissions
runs-on: ubuntu-latest
if: ${{ needs.check-permissions.outputs.is_authorized == 'true' && github.repository == secrets.REPO }}
if: ${{ needs.check-permissions.outputs.is_authorized == 'true' && github.repository == env.REPO }}

steps:
# Step 1: Checkout code
Expand Down

0 comments on commit eabd443

Please sign in to comment.