-
Notifications
You must be signed in to change notification settings - Fork 20
49 lines (42 loc) · 1.21 KB
/
pr_validate.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: PR Validate
on:
pull_request:
paths:
- Resourcepack/**
permissions:
contents: read
jobs:
Validator:
name: "🔎 Validator"
runs-on: ubuntu-latest
if: |
github.repository == 'xMikux/Slimefun-Resourcepack'
env:
base_dir: Resourcepack
steps:
- name: 📄 Checking Repostiory
uses: actions/checkout@v4
- name: ⚙️ Validate json
uses: GrantBirki/[email protected]
with:
base_dir: ${{ env.base_dir }}
json_extension: ".json"
yaml_extension: ".ignore-yaml"
yaml_extension_short: ".ignore-yml"
use_gitignore: false
- name: ⚙️ Validate mcmeta
uses: GrantBirki/[email protected]
with:
base_dir: ${{ env.base_dir }}
json_extension: ".mcmeta"
yaml_extension: ".ignore-yaml"
yaml_extension_short: ".ignore-yml"
use_gitignore: false
- name: ⚙️ Validate yaml
uses: GrantBirki/[email protected]
with:
base_dir: ${{ env.base_dir }}
json_extension: ".ignore-json"
yaml_extension: ".yaml"
yaml_extension_short: ".yml"
use_gitignore: false