Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/fr-gate-caller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: FR gate

# Per-repo caller. Blocks merges to staging/main/master unless every contained
# kanban item is in "Ready for staging" or "Ready for prod" respectively.
# All logic lives in tracebloc/.github/.github/workflows/fr-gate.yml.

on:
pull_request:
branches: [staging, main, master]
types: [opened, reopened, synchronize, ready_for_review, labeled, unlabeled]

jobs:
gate:
uses: tracebloc/.github/.github/workflows/fr-gate.yml@main
secrets: inherit
14 changes: 14 additions & 0 deletions .github/workflows/fr-pass-comment-caller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: FR pass comment

# Per-repo caller. Listens for /fr-pass comments and advances kanban items
# from "FR on dev" → "Ready for staging" or "FR on staging" → "Ready for prod".
# All logic lives in tracebloc/.github/.github/workflows/fr-pass-comment.yml.

on:
issue_comment:
types: [created]

jobs:
advance:
uses: tracebloc/.github/.github/workflows/fr-pass-comment.yml@main
secrets: inherit
Loading