Update Kamal Accessories #15
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: Update Kamal Accessories | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # Run every Sunday at 8:05 AM UTC | |
| - cron: "5 8 * * 0" | |
| jobs: | |
| update-accessories: | |
| name: Check and Update Accessories | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| actions: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Update Kamal accessories | |
| uses: ./ | |
| with: | |
| config-dir: config | |
| mode: update-all | |
| create-pr: true | |
| pr-branch: update/kamal-accessories | |
| pr-title: "chore: bump Kamal accessories versions" | |
| pr-body: "Automated update of Kamal accessories to their latest versions from Docker Hub." | |
| pr-labels: "dependencies,automation" | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |