Updating checklists and xsd templates #83
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: Updating checklists and xsd templates | |
on: | |
schedule: | |
- cron: '0 13 * * 1' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install jinja2 requests lxml | |
- name: Run xml converter | |
run: python var/xml_converter.py | |
- name: Run xsd converter | |
run: python var/xsd_converter.py | |
- name: Show differences | |
run: 'git diff --stat' | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: Update ENA Sample Checklists | |
title: 'Automatic update of ENA Sample Checklists' | |
body: | | |
This PR is automatically generated based on changes in the ena_upload/templates/ENA_template_samples_ERC0000XX.xml files. | |
Please verify if these changes are valid. | |
labels: | | |
automatic PR | |
reviewers: bedroesb | |
branch: checklist_update | |
base: master | |
- name: Check output | |
run: | | |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" |