Skip to content

Issue Curation

Issue Curation #109

Workflow file for this run

name: Issue Curation
on:
workflow_dispatch: {}
schedule:
- cron: "0 10 * * *"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
consume:
runs-on: ubuntu-20.04
steps:
- name: Clone
uses: actions/checkout@v3
- name: Consume
run: ./scripts/consume.sh
- name: Commit
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "[email protected]"
git add data
git commit -m "Automatic update of static artifacts" || true
git push