Update files to align with new patch-template #1
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: scripts | |
# Trigger workflow on push events with changes in SRC or D files | |
on: | |
push: | |
paths: | |
- "Ninja/**/*.src" | |
- "Ninja/**/*.d" | |
# These permissions are necessary for creating the check runs | |
permissions: | |
checks: write | |
contents: read | |
# The checkout action needs to be run first | |
jobs: | |
parsiphae: | |
name: Run Parsiphae | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check scripts | |
uses: szapp/parsiphae-action@v1 | |
with: | |
# Adjust these if changing the directory in the repository | |
# For more information on the configuration, visit https://github.com/szapp/parsiphae-action/#configuration | |
file: Ninja/*/*.src |