2023-05-11 21:21:28 -04:00
|
|
|
name: cron-licenses
|
2023-05-03 22:04:02 -04:00
|
|
|
|
2023-04-25 21:32:49 -04:00
|
|
|
on:
|
2023-04-25 21:38:33 -04:00
|
|
|
schedule:
|
2023-05-11 21:21:28 -04:00
|
|
|
- cron: "7 0 * * 1" # every Monday at 00:07 UTC
|
2023-06-16 13:00:39 -04:00
|
|
|
workflow_dispatch:
|
2023-04-25 21:32:49 -04:00
|
|
|
|
|
|
|
jobs:
|
2023-05-11 21:21:28 -04:00
|
|
|
cron-licenses:
|
2023-04-25 21:32:49 -04:00
|
|
|
runs-on: ubuntu-latest
|
2023-05-15 22:53:18 -04:00
|
|
|
if: github.repository == 'go-gitea/gitea'
|
2023-04-25 21:32:49 -04:00
|
|
|
steps:
|
2023-09-16 11:06:27 -04:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-21 00:31:04 -05:00
|
|
|
- uses: actions/setup-go@v5
|
2023-04-25 21:32:49 -04:00
|
|
|
with:
|
2023-10-17 06:24:54 -04:00
|
|
|
go-version-file: go.mod
|
2023-06-09 03:33:48 -04:00
|
|
|
check-latest: true
|
2023-05-11 21:21:28 -04:00
|
|
|
- run: make generate-license generate-gitignore
|
|
|
|
timeout-minutes: 40
|
2023-04-25 21:32:49 -04:00
|
|
|
- name: push translations to repo
|
2023-10-30 03:56:43 -04:00
|
|
|
uses: appleboy/git-push-action@v0.0.3
|
2023-04-25 21:32:49 -04: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 }}
|