feat(Electric Spawners): add new textures #69
Workflow file for this run
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: 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 |