2023-05-12 03:21:28 +02:00
|
|
|
name: cron-licenses
|
2023-05-04 04:04:02 +02:00
|
|
|
|
2023-04-26 03:32:49 +02:00
|
|
|
on:
|
2023-04-26 03:38:33 +02:00
|
|
|
schedule:
|
2023-05-12 03:21:28 +02:00
|
|
|
- cron: "7 0 * * 1" # every Monday at 00:07 UTC
|
2023-06-16 19:00:39 +02:00
|
|
|
workflow_dispatch:
|
2023-04-26 03:32:49 +02:00
|
|
|
|
|
|
|
jobs:
|
2023-05-12 03:21:28 +02:00
|
|
|
cron-licenses:
|
2023-04-26 03:32:49 +02:00
|
|
|
runs-on: ubuntu-latest
|
2023-05-16 04:53:18 +02:00
|
|
|
if: github.repository == 'go-gitea/gitea'
|
2023-04-26 03:32:49 +02:00
|
|
|
steps:
|
2023-05-12 03:21:28 +02:00
|
|
|
- uses: actions/checkout@v3
|
2023-06-09 09:33:48 +02:00
|
|
|
- uses: actions/setup-go@v4
|
2023-04-26 03:32:49 +02:00
|
|
|
with:
|
2023-08-10 23:53:44 +02:00
|
|
|
go-version: "~1.21"
|
2023-06-09 09:33:48 +02:00
|
|
|
check-latest: true
|
2023-05-12 03:21:28 +02:00
|
|
|
- run: make generate-license generate-gitignore
|
|
|
|
timeout-minutes: 40
|
2023-04-26 03:32:49 +02:00
|
|
|
- name: push translations to repo
|
|
|
|
uses: appleboy/git-push-action@v0.0.2
|
|
|
|
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 }}
|