Merge pull request #12 from ViPro-Technologies/ci/pr-gate-workflow

Add PR gate workflow for path-skipped pull requests
pull/16/head
VinPropane 2026-03-30 21:32:36 -04:00 committed by GitHub
commit 3b88bb2f2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 18 additions and 0 deletions

18
.github/workflows/pr-gate.yml vendored 100644
View File

@ -0,0 +1,18 @@
# Always runs on PRs so required status checks complete when path-filtered
# workflows (.github/workflows/dotnet.yml, gdscript.yml) are skipped.
# In GitHub: Settings → Rules / Branch protection → require “PR gate / build”
# (or drop a stale required check that never runs on docs-only PRs).
name: PR gate
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Gate
run: "true"