Skip to content

Commit 87d7c2a

Browse files
committed
.gitea: disable cron schedule
1 parent 9eed26d commit 87d7c2a

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

.gitea/workflows/release-azure-cleanup.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
on:
2-
schedule:
3-
- cron: '0 15 * * *'
42
workflow_dispatch:
53

4+
### Note we cannot use cron-triggered builds right now, Gitea seems to have
5+
### a few bugs in that area. So this workflow is scheduled using an external
6+
### triggering mechanism and workflow_dispatch.
7+
#
8+
# schedule:
9+
# - cron: '0 15 * * *'
10+
611
jobs:
712
azure-cleanup:
813
runs-on: ubuntu-latest

.gitea/workflows/release-ppa.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
on:
2-
schedule:
3-
- cron: '0 16 * * *'
42
push:
53
tags:
64
- "v*"
75
workflow_dispatch:
86

7+
### Note we cannot use cron-triggered builds right now, Gitea seems to have
8+
### a few bugs in that area. So this workflow is scheduled using an external
9+
### triggering mechanism and workflow_dispatch.
10+
#
11+
# schedule:
12+
# - cron: '0 16 * * *'
13+
14+
915
jobs:
1016
ppa:
1117
name: PPA Upload

0 commit comments

Comments
 (0)