1
0
Fork 0
mirror of https://github.com/monitoring-mixins/website.git synced 2024-12-14 11:37:31 +00:00

.github/workflows: add daily cronjob regenerating mixins

This commit is contained in:
paulfantom 2020-08-13 13:24:20 +02:00
parent 6439aed397
commit 1edfd5b17e
No known key found for this signature in database
GPG key ID: 12AE0185401674E7

28
.github/workflows/cron.yaml vendored Normal file
View file

@ -0,0 +1,28 @@
---
name: Daily content regeneration
on:
schedule:
- cron: '3 3 * * *'
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.14'
- run: make generate
- uses: EndBug/add-and-commit@v4
with:
add: 'assets/ site/content/'
author_name: "github-actions[bot]"
author_email: "github-actions@users.noreply.github.com"
message: 'assets,site/content: daily assets regeneration'
env:
# This is necessary in order to push a commit to the repo
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}