cron-licenses #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v5 | |
with: | |
go-version-file: go.mod | |
check-latest: true | |
- run: make generate-license generate-gitignore | |
timeout-minutes: 40 | |
- name: push translations to repo | |
uses: appleboy/[email protected] | |
with: | |
author_email: "[email protected]" | |
author_name: GiteaBot | |
branch: main | |
commit: true | |
commit_message: "[skip ci] Updated licenses and gitignores" | |
remote: "[email protected]:go-gitea/gitea.git" | |
ssh_key: ${{ secrets.DEPLOY_KEY }} |