mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
5e039b0580
as title ..Upgrading the actions/checkout@4 Signed-off-by: puni9869 <punitinani1@hotmail.com> Co-authored-by: silverwind <me@silverwind.io>
29 lines
830 B
YAML
29 lines
830 B
YAML
name: cron-licenses
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "7 0 * * 1" # every Monday at 00:07 UTC
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
cron-licenses:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'go-gitea/gitea'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: "~1.21"
|
|
check-latest: true
|
|
- run: make generate-license generate-gitignore
|
|
timeout-minutes: 40
|
|
- 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 }}
|