Merge pull request #12 from ViPro-Technologies/ci/pr-gate-workflow
Add PR gate workflow for path-skipped pull requestspull/16/head
commit
3b88bb2f2a
|
|
@ -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"
|
||||
Loading…
Reference in New Issue