name: buildx-releases-json concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true on: workflow_dispatch: schedule: - cron: '0 */12 * * *' push: branches: - 'main' pull_request: paths-ignore: - '.github/*-releases.json' jobs: generate: uses: crazy-max/.github/.github/workflows/releases-json.yml@fa6141aedf23596fb8bdcceab9cce8dadaa31bd9 with: repository: docker/buildx artifact_name: buildx-releases-json filename: buildx-releases.json secrets: inherit open-pr: runs-on: ubuntu-22.04 if: github.event_name != 'pull_request' needs: - generate steps: - name: Checkout uses: actions/checkout@v4 - name: Download uses: actions/download-artifact@v4 with: name: buildx-releases-json path: .github - name: Commit changes run: | git add -A . - name: Create PR uses: peter-evans/create-pull-request@b1ddad2c994a25fbc81a28b3ec0e368bb2021c50 with: base: main branch: bot/buildx-releases-json commit-message: "github: update .github/buildx-releases.json" signoff: true delete-branch: true title: "Update `.github/buildx-releases.json`" body: | Update `.github/buildx-releases.json` to keep in sync with [https://github.com/docker/buildx](https://github.com/docker/buildx). draft: false