From 201b1942bfb2c4a3652111da5c7ee2fc25e77d3f Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Tue, 31 Jan 2023 02:35:21 +0100 Subject: [PATCH] ci: generate buildx-releases.json Signed-off-by: CrazyMax --- .github/workflows/buildx-releases-json.yml | 58 ++++++++++++++++++++++ .github/workflows/test.yml | 2 + 2 files changed, 60 insertions(+) create mode 100644 .github/workflows/buildx-releases-json.yml diff --git a/.github/workflows/buildx-releases-json.yml b/.github/workflows/buildx-releases-json.yml new file mode 100644 index 0000000..d449353 --- /dev/null +++ b/.github/workflows/buildx-releases-json.yml @@ -0,0 +1,58 @@ +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/buildx-releases.json' + +jobs: + generate: + uses: crazy-max/.github/.github/workflows/releases-json.yml@2a596c917a8ad3e6203ae99b777148525a2e00d5 + 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@v3 + - + name: Download + uses: actions/download-artifact@v3 + with: + name: buildx-releases-json + path: .github + - + name: Commit changes + run: | + git add -A . + - + name: Create PR + uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 + with: + base: master + 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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c149e54..0a3b49f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,6 +5,8 @@ on: branches: - 'main' pull_request: + paths-ignore: + - '.github/buildx-releases.json' jobs: validate: