Skip to content

Commit 1d8df67

Browse files
authored
Comment out deployment schedule and conditions
Comment out the scheduled deployment cron job and the conditional checks for running the workflow.
1 parent 4a159a9 commit 1d8df67

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/deploy-website.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,29 @@ name: Deploy Playground website
33
on:
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

99
concurrency:
1010
group: website-deployment
1111

1212
jobs:
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

Comments
 (0)