This commit is contained in:
Loup-Garou911XD 2025-12-10 21:09:38 +05:30
parent 14ad3668b3
commit 0ba189615c
3 changed files with 12 additions and 9 deletions

View file

@ -2,11 +2,11 @@ name: CI
# WORD OF CAUTION:
# TO anyone modifying this
# Things will break if you modify this
# Things will break if you modify this
# without understanding how it works
# A simple flow of this file:
# Apply AutoPEP8 → Apply Plugin Metadata → CRITICAL COMMIT (format + plugin meta)
# Apply AutoPEP8 → Apply Plugin Metadata → CRITICAL COMMIT (format + plugin meta)
# ← ← ← ← ← ↵
# ↪ Apply Version Metadata → Commit (version meta) → Tests
@ -24,6 +24,7 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
- name: Set up Python
uses: actions/setup-python@v6
@ -42,10 +43,10 @@ jobs:
- name: Apply Plugin Metadata
if: github.event_name == 'pull_request_target'
# should this only be run on pull_request_target and not pushes??
env:
GH_TOKEN: ${{ github.token }}
run: |
LAST_COMMIT_HASH=$(git log --pretty=format:'%H' -n 1)
CHANGED_FILES=$(git diff-tree --no-commit-id --name-only -r "$LAST_COMMIT_HASH")
CHANGED_FILES=$(gh api "repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/files" --jq '.[].filename')
python test/auto_apply_plugin_metadata.py "$CHANGED_FILES"
# This is a CRITICAL COMMIT for the next step