NIJZ PCT rules update #12524
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: NIJZ PCT rules update | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/update.yml' | |
- 'download.sh' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/update.yml' | |
- 'download.sh' | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '25 4 * * *' | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
update: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
# Runs a single command using the runners shell | |
- name: Run download script | |
run: ./download.sh | |
# Runs a set of commands using the runners shell | |
- name: Check git diff | |
run: | | |
ls -la rules/* | |
git status rules/ | |
git diff rules/ | |
# Git commit + push, see https://github.com/github-actions-x/commit | |
- name: Publish NIJZ PCT rule for Slovenia changes to git | |
if: github.ref == 'refs/heads/main' | |
uses: github-actions-x/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
push-branch: 'main' | |
commit-message: 'NIJZ PCT rules for Slovenia🇸🇮 update 🤖' | |
rebase: 'true' # pull and rebase before commit | |
files: 'rules/SI/' | |
name: Sledilnik data scrape bot 🤖 | |
email: [email protected] | |
- name: Publish NIJZ PCT rules for other countries changes to git | |
if: github.ref == 'refs/heads/main' | |
uses: github-actions-x/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
push-branch: 'main' | |
commit-message: 'NIJZ PCT rules for other🇪🇺 update 🤖' | |
rebase: 'true' # pull and rebase before commit | |
files: 'rules/' | |
name: Sledilnik data scrape bot 🤖 | |
email: [email protected] | |
- name: Publish other NIJZ PCT data changes to git | |
if: github.ref == 'refs/heads/main' | |
uses: github-actions-x/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
push-branch: 'main' | |
commit-message: 'NIJZ PCT data update 🤖' | |
rebase: 'true' # pull and rebase before commit | |
files: '*.json valuesets/ signercertificateUpdate.*' | |
name: Sledilnik data scrape bot 🤖 | |
email: [email protected] |