@@ -3,29 +3,29 @@ name: Deploy Playground website
33on :
44 workflow_dispatch :
55 # Deploy the website every Tuesday at 11am UTC
6- schedule :
7- - cron : ' 0 11 * * 2'
6+ # schedule:
7+ # - cron: '0 11 * * 2'
88
99concurrency :
1010 group : website-deployment
1111
1212jobs :
1313 build_and_deploy :
1414 # Only run this workflow from the trunk branch and when it's triggered by another workflow OR a Playground maintainer
15- if : >
16- github.ref == 'refs/heads/trunk' && (
17- github.event_name == 'workflow_run' ||
18- (github.event_name == 'workflow_dispatch' && github.actor == 'github-actions[bot]') ||
19- github.actor == 'adamziel' ||
20- github.actor == 'akirk' ||
21- github.actor == 'dmsnell' ||
22- github.actor == 'bgrgicak' ||
23- github.actor == 'brandonpayton' ||
24- github.actor == 'zaerl' ||
25- github.actor == 'janjakes' ||
26- github.actor == 'mho22' ||
27- github.actor == 'ashfame'
28- )
15+ # if: >
16+ # github.ref == 'refs/heads/trunk' && (
17+ # github.event_name == 'workflow_run' ||
18+ # (github.event_name == 'workflow_dispatch' && github.actor == 'github-actions[bot]') ||
19+ # github.actor == 'adamziel' ||
20+ # github.actor == 'akirk' ||
21+ # github.actor == 'dmsnell' ||
22+ # github.actor == 'bgrgicak' ||
23+ # github.actor == 'brandonpayton' ||
24+ # github.actor == 'zaerl' ||
25+ # github.actor == 'janjakes' ||
26+ # github.actor == 'mho22' ||
27+ # github.actor == 'ashfame'
28+ # )
2929
3030 # Specify runner + deployment step
3131 runs-on : ubuntu-latest
0 commit comments