Skip to content

Commit ca6d4d2

Browse files
authored
Update blossom-ci.yml
Fix AUTHORIZED_USERS
1 parent bc7d40b commit ca6d4d2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/blossom-ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ jobs:
2929
Authorization:
3030
name: Authorization
3131
runs-on: blossom
32+
env:
33+
AUTHORIZED_USERS: ${{ secrets.AUTHORIZED_USERS }}
3234
outputs:
3335
args: ${{ env.args }}
3436

3537
# This job only runs for pull request comments
3638
if: |
37-
contains( ${{ secrets.AUTHORIZED_USERS }}, format('{0},', github.actor)) &&
39+
contains( ${{ env.AUTHORIZED_USERS }}, format('{0},', github.actor)) &&
3840
github.event.comment.body == '/nvidia-ci'
3941
steps:
4042
- name: Check if comment is issued by authorized person

0 commit comments

Comments
 (0)