This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Merge pull request #808 from evakhoni/fix_qemu #394
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: Trigger Packages Index Generation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| tags: | |
| - "*" | |
| jobs: | |
| trigger-packages-index: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository_owner == 'jumpstarter-dev' }} | |
| steps: | |
| - uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2.0.2 | |
| id: app-token | |
| with: | |
| app-id: ${{ secrets.JUMPSTARTER_BACKPORT_BOT_APP_ID }} | |
| private-key: ${{ secrets.JUMPSTARTER_BACKPORT_BOT_PRIVATE_KEY }} | |
| owner: ${{ github.repository_owner }} | |
| repositories: | | |
| packages | |
| - name: Trigger packages repository index generation | |
| uses: peter-evans/repository-dispatch@v3 | |
| with: | |
| token: ${{ steps.app-token.outputs.token }} | |
| repository: jumpstarter-dev/packages | |
| event-type: generate-index |