commit f20493aed5ea4a4a52d4a3715c42a914f511c049 parent f9f1e7fb367faa728b0c08fe92c83ede7d9b77c2 Author: MTRNord <MTRNord@users.noreply.github.com> Date: Sat, 29 Nov 2025 22:57:58 +0100 get rid of broken ci Signed-off-by: MTRNord <MTRNord@users.noreply.github.com> Diffstat:
| D | .github/workflows/update.yaml | | | 39 | --------------------------------------- |
1 file changed, 0 insertions(+), 39 deletions(-)
diff --git a/.github/workflows/update.yaml b/.github/workflows/update.yaml @@ -1,39 +0,0 @@ -name: update-flux -on: - workflow_dispatch: - schedule: - - cron: "0 * * * *" - push: - branches: - - main -permissions: - contents: write - pull-requests: write -jobs: - components: - runs-on: ubuntu-latest - steps: - - name: Check out code - uses: actions/checkout@v6 - - name: Setup Flux CLI - uses: fluxcd/flux2/action@main - - name: Check for updates - id: update - run: "flux install --components-extra=image-reflector-controller,image-automation-controller \\\n --export - > ./clusters/2024_cluster/flux-system/gotk-components.yaml\n\nVERSION=\"$(flux -v)\"\necho \"flux_version=$VERSION\" - >> $GITHUB_OUTPUT \n" - - uses: actions/setup-go@v6 - with: - go-version: '^1.23.2' - - name: Run yamlfmt - run: | - go install github.com/google/yamlfmt/cmd/yamlfmt@latest - yamlfmt . - - name: Create Pull Request - uses: peter-evans/create-pull-request@v7 - with: - token: ${{ secrets.GITHUB_TOKEN }} - branch: update-flux - commit-message: Update to ${{ steps.update.outputs.flux_version }} - title: Update to ${{ steps.update.outputs.flux_version }} - body: "${{ steps.update.outputs.flux_version }} \n"