Update-Flux #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update-Flux | |
on: | |
workflow_dispatch: | |
jobs: | |
update-flux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Flux CLI | |
uses: fluxcd/flux2/action@main | |
with: | |
version: "latest" | |
- name: Update flux | |
run: flux install --export > ./kubernetes/infra/flux/gotk-components.old | |
- name: Commit and push changes | |
run: | | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
git config user.name "github-actions[bot]" | |
git add . | |
git commit -m "Update flux" | |
git branch -b gh-actions/flux-update | |
git push | |
- name: Create Pull Request | |
run: gh pr create -B master -H gh-actions/flux-update --title 'Update Flux' --body 'Updates flux components using Flux CLI' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |