Skip to content

Commit 0973e38

Browse files
Restore safety condition for CORS proxy deployment workflow (#55)
I forgot to restore the safety checks before merging the CORS proxy deployment workflow in #54 . This PR restores those checks.
1 parent 061de93 commit 0973e38

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

.github/workflows/deploy-cors-proxy.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,18 @@ jobs:
1010
build_and_deploy:
1111
# Only run this workflow from the trunk branch and when it's triggered by a maintainer listed below
1212
# TODO: Can we check for group membership?
13-
# TODO Uncomment before merging
14-
# if: >
15-
# github.ref == 'refs/heads/trunk' && (
16-
# github.event_name == 'workflow_run' ||
17-
# github.event_name == 'workflow_dispatch' ||
18-
# github.actor == 'adamziel' ||
19-
# github.actor == 'dmsnell' ||
20-
# github.actor == 'bgrgicak' ||
21-
# github.actor == 'brandonpayton' ||
22-
# github.actor == 'zaerl' ||
23-
# github.actor == 'akirk' ||
24-
# github.actor == 'janjakes'
25-
# )
13+
if: >
14+
github.ref == 'refs/heads/trunk' && (
15+
github.event_name == 'workflow_run' ||
16+
github.event_name == 'workflow_dispatch' ||
17+
github.actor == 'adamziel' ||
18+
github.actor == 'dmsnell' ||
19+
github.actor == 'bgrgicak' ||
20+
github.actor == 'brandonpayton' ||
21+
github.actor == 'zaerl' ||
22+
github.actor == 'akirk' ||
23+
github.actor == 'janjakes'
24+
)
2625
2726
# Specify runner + deployment step
2827
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)