2023-01-31 09:35:21 +08:00
|
|
|
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:
|
2024-06-20 22:17:35 +08:00
|
|
|
paths:
|
|
|
|
- '.github/workflows/buildx-releases-json.yml'
|
2023-01-31 09:35:21 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
generate:
|
2024-02-06 20:58:19 +08:00
|
|
|
uses: crazy-max/.github/.github/workflows/releases-json.yml@fa6141aedf23596fb8bdcceab9cce8dadaa31bd9
|
2023-01-31 09:35:21 +08:00
|
|
|
with:
|
|
|
|
repository: docker/buildx
|
|
|
|
artifact_name: buildx-releases-json
|
|
|
|
filename: buildx-releases.json
|
|
|
|
secrets: inherit
|
|
|
|
|
2023-02-03 00:04:52 +08:00
|
|
|
open-pr:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
needs:
|
|
|
|
- generate
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2023-09-05 06:40:48 +08:00
|
|
|
uses: actions/checkout@v4
|
2023-02-03 00:04:52 +08:00
|
|
|
-
|
|
|
|
name: Download
|
2024-02-06 20:58:19 +08:00
|
|
|
uses: actions/download-artifact@v4
|
2023-02-03 00:04:52 +08:00
|
|
|
with:
|
|
|
|
name: buildx-releases-json
|
|
|
|
path: .github
|
|
|
|
-
|
|
|
|
name: Commit changes
|
|
|
|
run: |
|
|
|
|
git add -A .
|
|
|
|
-
|
|
|
|
name: Create PR
|
2024-09-06 07:03:36 +08:00
|
|
|
uses: peter-evans/create-pull-request@8867c4aba1b742c39f8d0ba35429c2dfa4b6cb20 # v7.0.1
|
2023-02-03 00:04:52 +08:00
|
|
|
with:
|
2023-02-03 00:10:36 +08:00
|
|
|
base: main
|
2023-02-03 00:04:52 +08:00
|
|
|
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
|