Skip to content

Commit

Permalink
change to acl format (#1706)
Browse files Browse the repository at this point in the history
Signed-off-by: YanxuanLiu <[email protected]>
  • Loading branch information
YanxuanLiu committed Jun 24, 2024
1 parent 702379d commit fc9b567
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/blossom-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,16 @@ jobs:
args: ${{ env.args }}

# This job only runs for pull request comments
if: contains('\
Nic-Ma,\
SachidanandAlle,\
diazandr3s,\
tangy5,\
wyli,\
YanxuanLiu,\
', format('{0},', github.actor)) && github.event.comment.body == '/build'
if: |
github.event.comment.body == '/build' &&
(
github.actor == 'Nic-Ma' ||
github.actor == 'SachidanandAlle' ||
github.actor == 'diazandr3s' ||
github.actor == 'tangy5' ||
github.actor == 'wyli' ||
github.actor == 'YanxuanLiu'
)
steps:
- name: Check if comment is issued by authorized person
run: blossom-ci
Expand Down

0 comments on commit fc9b567

Please sign in to comment.