0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-05-01 20:25:16 +02:00
gitea/.github/workflows/cron-licenses.yml
silverwind 5dc374caa2
Pin all GitHub Actions to commit SHAs
Pin all third-party GitHub Actions to their current commit SHAs
for supply chain security. The tag is preserved as a comment for
readability and update tracking.

Co-Authored-By: Claude (Opus 4.6) <noreply@anthropic.com>
2026-03-24 03:40:07 +01:00

32 lines
989 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'
permissions:
contents: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6
with:
go-version-file: go.mod
check-latest: true
- run: make generate-gitignore
timeout-minutes: 40
- name: push translations to repo
uses: appleboy/git-push-action@3b2c8661652360dbf1afe1b319a49dbb739c39f1 # v1.2.0
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 }}