diff --git a/.github/workflows/pr-comment-trigger.yml b/.github/workflows/pr-comment-trigger.yml index 4c75e4a..4e5b7e9 100644 --- a/.github/workflows/pr-comment-trigger.yml +++ b/.github/workflows/pr-comment-trigger.yml @@ -33,7 +33,7 @@ jobs: echo "github.event.comment.body: ${{ github.event.comment.body }}" get-example-list: - if: ${{ (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'COLLABORATOR' ) && + if: ${{ (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'COLLABORATOR' || github.event.comment.author_association == 'CONTRIBUTOR' ) && github.event.issue.pull_request && contains(github.event.comment.body, inputs.trigger-keyword ) }} runs-on: ubuntu-22.04 @@ -89,7 +89,7 @@ jobs: -f context="Uptest-${{ steps.get-example-list-name.outputs.example-hash }}" uptest: - if: ${{ (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'COLLABORATOR' ) && + if: ${{ (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'COLLABORATOR' || github.event.comment.author_association == 'CONTRIBUTOR' ) && github.event.issue.pull_request && contains(github.event.comment.body, inputs.trigger-keyword ) }} runs-on: ubuntu-22.04