Skip to content

Commit

Permalink
Update e2e-private-link-in-pr.yml
Browse files Browse the repository at this point in the history
Fix invitation to private repo
  • Loading branch information
ewjoachim authored Sep 1, 2024
1 parent 3a591f9 commit c4abb99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/e2e-private-link-in-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
collaborator:
- LOGIN: kieferro
PERMISSION: admin
ENABLED: "true"
ENABLED: true

- LOGIN: ewjoachim
PERMISSION: admin
ENABLED: "true"
ENABLED: true

- LOGIN: ${{ github.event.issue.user.login }}
PERMISSION: push
Expand All @@ -30,7 +30,7 @@ jobs:

- name: Invite @${{ matrix.collaborator.LOGIN }} to the e2e private repo
run: gh api --method PUT /repos/mihcaojwe/python-coverage-comment-action-end-to-end-${NUMBER}-private/collaborators/${LOGIN} -f permission=${PERMISSION}
if: ${{ matrix.collaborator.ENABLED == 'true' }}
if: ${{ matrix.collaborator.ENABLED == true }}
env:
LOGIN: ${{ matrix.collaborator.LOGIN }}
NUMBER: ${{ github.event.issue.number }}
Expand Down

0 comments on commit c4abb99

Please sign in to comment.