diff options
author | techknowlogick <techknowlogick@gitea.io> | 2023-04-25 21:32:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-25 21:32:49 -0400 |
commit | 61a73edbf36ebf795241ee818316701d2ca7364b (patch) | |
tree | 20d197db4c44d5a1109fb57641bd2e2265674a28 /.github/workflows/cron-licenses.yml | |
parent | fa86a1b74af69ea6b0611013152d81954caedcd9 (diff) | |
download | gitea-61a73edbf36ebf795241ee818316701d2ca7364b.tar.gz gitea-61a73edbf36ebf795241ee818316701d2ca7364b.zip |
switch to use Actions from drone for cron (#24314)
Move drone cron pipelines to (GitHub) Actions. As these are mostly
compatible with Gitea Actions, when we start to dogfood, these will
already be migrated.
Diffstat (limited to '.github/workflows/cron-licenses.yml')
-rw-r--r-- | .github/workflows/cron-licenses.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/cron-licenses.yml b/.github/workflows/cron-licenses.yml new file mode 100644 index 0000000000..21ab72a5e9 --- /dev/null +++ b/.github/workflows/cron-licenses.yml @@ -0,0 +1,28 @@ +on: + cron: + # weekly on Monday at 0:07 UTC + - cron: "7 0 * * 1" + +name: Update licenses and gitignores + +jobs: + cron: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - uses: actions/setup-go@v3 + with: + go-version: '>=1.20.1' + - name: update licenses and gitignores + run: timeout -s ABRT 40m make generate-license generate-gitignore + - 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 }} |