CRON Reboot Dispatch #69
This file contains hidden or 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: CRON Reboot Dispatch | |
| on: | |
| schedule: | |
| # Daily at 3 AM UTC | |
| - cron: "0 3 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| reboot-dispatch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger staggered reboot of K3s nodes via private repo | |
| uses: peter-evans/repository-dispatch@de78ac1a711fc6f29e77338f843065faf5335227 # Commit from 19 Sep 2025 | |
| with: | |
| token: ${{ secrets.PAT_FOR_TRIGGERING_PRIVATE_WORKFLOWS }} | |
| repository: felix-seifert/gohfert-cluster-private-runners | |
| event-type: k3s-nodes-staggered-reboot | |
| client-payload: '{"ref": "${{ github.ref }}"}' |