Update-Flux #20
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: | |
schedule: | |
- cron: "0 0 * * 1" # Run at 12:00 AM every Monday | |
jobs: | |
update-flux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # 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.yaml | |
- name: Commit and push changes | |
id: commit | |
run: | | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
git config user.name "github-actions[bot]" | |
if [ -n "$(git status --porcelain)" ]; then | |
git add . | |
git commit -m "Update flux" | |
git checkout -b gh-actions/flux-update | |
git push --set-upstream origin gh-actions/flux-update | |
echo "changes=true" >> $GITHUB_OUTPUT | |
else | |
echo "No changes to commit." | |
echo "changes=false" >> $GITHUB_OUTPUT | |
fi | |
shell: bash | |
- name: Create Pull Request | |
if: steps.commit.outputs.changes == 'true' | |
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 }} |