Update Country ISO Code YAML #53
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: Update data | |
on: | |
schedule: | |
- cron: '0 13 * * 1' | |
workflow_dispatch: | |
jobs: | |
country-lookup: | |
if: | | |
github.repository_owner == 'elixir-belgium' && github.event_name != 'pull_request' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install ruamel.yaml requests python-frontmatter | |
- name: Fetch country names with corresponding iso | |
run: | | |
python var/country_list.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 tool/resource_list.yaml | |
title: 'Automatic tool/resource-list update' | |
body: | | |
This PR is automatically generated based on changes in the main_tool_and_resource_list.csv file or based on new links made between the tool table and TeSS. | |
Please verify if these changes are valid. | |
labels: | | |
automatic PR | |
reviewers: bedroesb | |
branch: updates | |
base: main | |
- name: Check output | |
run: | | |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" |