Skip to content

Commit 561c832

Browse files
committed
Introduce workflow for bumping fluxcd/pkg deps
Signed-off-by: Matheus Pimenta <matheuscscp@gmail.com>
1 parent d527a7b commit 561c832

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/bump-deps.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)