-
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (27 loc) · 788 Bytes
/
scripts.yml
File metadata and controls
30 lines (27 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: scripts
# Trigger workflow on push events with changes in SRC or D files
on:
push:
paths:
- "Ninja/**/*.src"
- "Ninja/**/*.SRC"
- "Ninja/**/*.d"
- "Ninja/**/*.D"
workflow_dispatch:
# 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@v6
- 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