2023-05-12 01:21:28 +00:00
|
|
|
name: cron-licenses
|
2023-05-04 02:04:02 +00:00
|
|
|
|
2023-04-26 01:32:49 +00:00
|
|
|
on:
|
2023-04-26 01:38:33 +00:00
|
|
|
schedule:
|
2023-05-12 01:21:28 +00:00
|
|
|
- cron: "7 0 * * 1" # every Monday at 00:07 UTC
|
2023-06-16 17:00:39 +00:00
|
|
|
workflow_dispatch:
|
2023-04-26 01:32:49 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-05-12 01:21:28 +00:00
|
|
|
cron-licenses:
|
2023-04-26 01:32:49 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-05-16 02:53:18 +00:00
|
|
|
if: github.repository == 'go-gitea/gitea'
|
2023-04-26 01:32:49 +00:00
|
|
|
steps:
|
2023-09-16 15:06:27 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-21 05:31:04 +00:00
|
|
|
- uses: actions/setup-go@v5
|
2023-04-26 01:32:49 +00:00
|
|
|
with:
|
2023-10-17 10:24:54 +00:00
|
|
|
go-version-file: go.mod
|
2023-06-09 07:33:48 +00:00
|
|
|
check-latest: true
|
2023-05-12 01:21:28 +00:00
|
|
|
- run: make generate-license generate-gitignore
|
|
|
|
timeout-minutes: 40
|
2023-04-26 01:32:49 +00:00
|
|
|
- name: push translations to repo
|
2023-10-30 07:56:43 +00:00
|
|
|
uses: appleboy/git-push-action@v0.0.3
|
2023-04-26 01:32:49 +00:00
|
|
|
with:
|
|
|
|
author_email: "teabot@gitea.io"
|
|
|
|
author_name: GiteaBot
|
|
|
|
branch: main
|
|
|
|
commit: true
|
|
|
|
commit_message: "[skip ci] Updated licenses and gitignores"
|
|
|
|
remote: "git@github.com:go-gitea/gitea.git"
|
|
|
|
ssh_key: ${{ secrets.DEPLOY_KEY }}
|