We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69a3121 commit 0e85731Copy full SHA for 0e85731
.github/workflows/pr-comment.yaml
@@ -7,7 +7,8 @@ jobs:
7
if: |
8
github.event.issue.pull_request &&
9
github.repository == 'adobe/react-spectrum' &&
10
- github.actor == 'LFDanLu'
+ github.event.comment.author_association == 'MEMBER' &&
11
+ contains(github.event.comment.body, 'GET_BUILD')
12
runs-on: ubuntu-latest
13
steps:
14
- uses: actions/checkout@main
@@ -18,7 +19,6 @@ jobs:
18
19
- name: install
20
run: yarn install
21
- name: Comment contains trigger
- if: contains(github.event.comment.body, 'GET_BUILD')
22
uses: ./.github/actions/branch
23
env:
24
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments