We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d527a7b commit 561c832Copy full SHA for 561c832
1 file changed
.github/workflows/bump-deps.yaml
@@ -0,0 +1,21 @@
1
+name: bump-deps
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ pre-release-pkg:
7
+ description: >-
8
+ Temporary flag for Flux 2.8: use the flux/v2.8.x pkg branch for main branches
9
+ because the pkg release branch was cut before the Flux distribution release.
10
+ Remove this input once Flux 2.8.0 is released.
11
+ required: false
12
+ default: false
13
+ type: boolean
14
15
+jobs:
16
+ bump-deps:
17
+ uses: fluxcd/gha-workflows/.github/workflows/bump-deps.yaml@v0.7.0
18
+ with:
19
+ pre-release-pkg: ${{ inputs.pre-release-pkg }}
20
+ secrets:
21
+ github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
0 commit comments