Skip to content
Merged
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
17 changes: 17 additions & 0 deletions .github/workflows/advance-deploy-env-caller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Advance deploy env

# .github hosts the reusable advance-deploy-env.yml (workflow_call only), so —
# unlike every other repo — it had no push trigger of its own. Its kanban items
# therefore never advanced as their code moved through develop -> main: feature
# PRs stranded at "FR on dev" while their promotion PR alone reached Prod. This
# caller fires the reusable on this repo's own pushes, like the other 14 repos,
# so shipping to main auto-advances the contained tickets to Prod.

on:
push:
branches: [develop, staging, master, main]

jobs:
advance:
uses: tracebloc/.github/.github/workflows/advance-deploy-env.yml@main
secrets: inherit
Loading