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
19 changes: 19 additions & 0 deletions .github/workflows/fledge-bump.yml
Original file line number Diff line number Diff line change
@@ -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
18 changes: 18 additions & 0 deletions .github/workflows/fledge-tag-on-merge.yml
Original file line number Diff line number Diff line change
@@ -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
Loading