Skip to content

Commit c4abb99

Browse files
authored
Update e2e-private-link-in-pr.yml
Fix invitation to private repo
1 parent 3a591f9 commit c4abb99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/e2e-private-link-in-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
collaborator:
1717
- LOGIN: kieferro
1818
PERMISSION: admin
19-
ENABLED: "true"
19+
ENABLED: true
2020

2121
- LOGIN: ewjoachim
2222
PERMISSION: admin
23-
ENABLED: "true"
23+
ENABLED: true
2424

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

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

0 commit comments

Comments
 (0)