add voetbal-nl #515
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: Checks | |
on: | |
# PRs only on main branch | |
pull_request: | |
branches: [main] | |
jobs: | |
check: | |
name: Check Recipe Version Bump | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Fetch main branch | |
run: git fetch origin main --depth 1 | |
- uses: tj-actions/changed-files@v44 | |
id: changed-files | |
- name: Checking recipe version bump | |
uses: ./.github/workflows/check-recipe-version-bump | |
with: | |
changed-files: ${{ steps.changed-files.outputs.modified_files }} |