Skip to content

Commit f761163

Browse files
authored
Merge pull request #382 from richard-cox/disable-cron-jobs
Disable cron based workflows
2 parents c8a5969 + e236273 commit f761163

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/backend-cleanup-images.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Backend - Delete old container images
22

33
on:
44
workflow_dispatch:
5-
schedule:
6-
- cron: "0 6 * * *" # every day at 6 in the morning
5+
# schedule:
6+
# - cron: "0 6 * * *" # every day at 6 in the morning
77

88
jobs:
99
clean-ghcr:

.github/workflows/backend-main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ on:
1212
- backend/**
1313
- '!backend/README.md'
1414
# nightly
15-
schedule:
16-
- cron: '0 0 * * *'
15+
# schedule:
16+
# - cron: '0 0 * * *'
1717

1818
defaults:
1919
run:

.github/workflows/release-next.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Release Next
22

33
on:
44
workflow_dispatch:
5-
schedule:
6-
- cron: '0 1 * * *'
5+
# schedule:
6+
# - cron: '0 1 * * *'
77

88
env:
99
SETUP_GO_VERSION: '1.20'

0 commit comments

Comments
 (0)