Skip to content

Commit 39754d7

Browse files
committedMay 12, 2023
Merge remote-tracking branch 'upstream/main'
* upstream/main: GitHub Actions cleanups (go-gitea#24620) Fix issues list page multiple selection update milestones (go-gitea#24660) Make repo migration cancelable and fix various bugs (go-gitea#24605) Improve queue & process & stacktrace (go-gitea#24636) Fix missing badges in org settings page (go-gitea#24654) Only show one tippy at a time (go-gitea#24648) Reenable creating default webhooks. (go-gitea#24626) Kd/fix redis unit test (go-gitea#24650)
2 parents cb2de12 + 6c8b680 commit 39754d7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+731
-627
lines changed
 

‎.github/workflows/cron-licenses.yml

+8-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
1-
name: "Cron: Update licenses and gitignores"
1+
name: cron-licenses
22

33
on:
44
schedule:
5-
# weekly on Monday at 0:07 UTC
6-
- cron: "7 0 * * 1"
5+
- cron: "7 0 * * 1" # every Monday at 00:07 UTC
76

87
jobs:
9-
cron:
8+
cron-licenses:
9+
if: github.repository == "go-gitea/gitea"
1010
runs-on: ubuntu-latest
1111
steps:
12-
- name: Checkout
13-
uses: actions/checkout@v3
12+
- uses: actions/checkout@v3
1413
- uses: actions/setup-go@v3
1514
with:
16-
go-version: '>=1.20.1'
17-
- name: update licenses and gitignores
18-
run: timeout -s ABRT 40m make generate-license generate-gitignore
15+
go-version: ">=1.20.1"
16+
- run: make generate-license generate-gitignore
17+
timeout-minutes: 40
1918
- name: push translations to repo
2019
uses: appleboy/git-push-action@v0.0.2
2120
with:

‎.github/workflows/lock.yml ‎.github/workflows/cron-lock.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name: 'Lock Threads'
1+
name: cron-lock
22

33
on:
44
schedule:
5-
- cron: '0 0 * * *' # Run once a day
5+
- cron: "0 0 * * *" # every day at 00:00 UTC
66
workflow_dispatch:
77

88
permissions:

0 commit comments

Comments
 (0)
Please sign in to comment.