Refresh standard #1200
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: Refresh standard | |
on: | |
schedule: | |
- cron: '0 6 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- uses: actions/cache@v2 | |
name: Cache dependencies | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run refresh standard script | |
run: | | |
python refresh_standard.py | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.TOKEN }} | |
commit-message: Standard update | |
committer: CodeforIATI bot <[email protected]> | |
author: CodeforIATI bot <[email protected]> | |
branch: refresh-standard | |
delete-branch: true | |
title: Refresh standard | |
body: Pull in latest changes to the standard (e.g. non-embedded codelist updates), sent from [this GitHub Action build](https://github.com/codeforIATI/validator/actions/runs/${{ github.run_id }}). | |
reviewers: andylolz |