From ad4c63b1c16a2a32af6ca066e14ad9987b9f8474 Mon Sep 17 00:00:00 2001 From: Joe Thorley Date: Wed, 17 Jun 2026 07:49:16 -0700 Subject: [PATCH 1/2] Add fledge-bump workflow --- .github/workflows/fledge-bump.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/fledge-bump.yml diff --git a/.github/workflows/fledge-bump.yml b/.github/workflows/fledge-bump.yml new file mode 100644 index 0000000..51becd4 --- /dev/null +++ b/.github/workflows/fledge-bump.yml @@ -0,0 +1,19 @@ +# Daily fledge dev-version bump. Calls the reusable engine in poissonconsulting/.github. +# Requires the org-level secrets FLEDGE_APP_ID and FLEDGE_APP_PRIVATE_KEY (passed via +# `secrets: inherit`) and the companion fledge-tag-on-merge.yml workflow in this repo. + +name: fledge-bump + +on: + schedule: + - cron: "0 7 * * *" + workflow_dispatch: + +permissions: + contents: write + pull-requests: write + +jobs: + fledge-bump: + uses: poissonconsulting/.github/.github/workflows/fledge-bump.yml@v1 + secrets: inherit From c79baad510d4954144e358c7f9bf8887856ee20e Mon Sep 17 00:00:00 2001 From: Joe Thorley Date: Wed, 17 Jun 2026 07:49:17 -0700 Subject: [PATCH 2/2] Add fledge-tag-on-merge workflow --- .github/workflows/fledge-tag-on-merge.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/fledge-tag-on-merge.yml diff --git a/.github/workflows/fledge-tag-on-merge.yml b/.github/workflows/fledge-tag-on-merge.yml new file mode 100644 index 0000000..dc2c27c --- /dev/null +++ b/.github/workflows/fledge-tag-on-merge.yml @@ -0,0 +1,18 @@ +# Tags the dev version on main after a release-path fledge-bump PR merges. +# Required alongside fledge-bump.yml. Calls the reusable engine in poissonconsulting/.github. + +name: fledge-tag-on-merge + +on: + pull_request: + types: [closed] + branches: [main, master] + +permissions: + contents: write + +jobs: + tag: + if: github.event.pull_request.merged == true && github.event.pull_request.head.ref == 'fledge-bump' + uses: poissonconsulting/.github/.github/workflows/fledge-tag-on-merge.yml@v1 + secrets: inherit