✨ Add bs.block:emit_block_particles
#120
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: 🔍 Pull Request Checks | |
on: | |
pull_request: | |
paths: | |
- "datapacks/**" | |
types: | |
[ | |
opened, | |
synchronize, | |
reopened, | |
labeled, | |
unlabeled | |
] | |
env: | |
GITHUB_EVENT: ${{ toJSON(github.event) }} | |
jobs: | |
review-metadata: | |
name: 🔍 Metadata Review | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: pip install -e ./scripts | |
- name: Check function headers | |
run: python scripts/workflows/check_function_headers.py | |
- name: Check feature tag | |
run: python scripts/workflows/check_feature_tag.py | |
- name: Check module metadata file | |
run: python scripts/workflows/check_module_metadata_file.py | |
- name: Check generated metadata | |
run: python scripts/workflows/check_generated_metadata.py |