2023-03-03 02:16:57 +08:00
|
|
|
name: docker-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/docker-releases-json.yml'
|
2023-03-03 02:16:57 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
generate:
|
2024-02-06 20:58:19 +08:00
|
|
|
uses: crazy-max/.github/.github/workflows/releases-json.yml@fa6141aedf23596fb8bdcceab9cce8dadaa31bd9
|
2023-03-03 02:16:57 +08:00
|
|
|
with:
|
|
|
|
repository: moby/moby
|
|
|
|
artifact_name: docker-releases-json
|
|
|
|
filename: docker-releases.json
|
|
|
|
secrets: inherit
|
|
|
|
|
|
|
|
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-03-03 02:16:57 +08:00
|
|
|
-
|
|
|
|
name: Download
|
2024-02-06 20:58:19 +08:00
|
|
|
uses: actions/download-artifact@v4
|
2023-03-03 02:16:57 +08:00
|
|
|
with:
|
|
|
|
name: docker-releases-json
|
|
|
|
path: .github
|
|
|
|
-
|
|
|
|
name: Commit changes
|
|
|
|
run: |
|
|
|
|
git add -A .
|
|
|
|
-
|
|
|
|
name: Create PR
|
2024-09-13 06:31:03 +08:00
|
|
|
uses: peter-evans/create-pull-request@d121e62763d8cc35b5fb1710e887d6e69a52d3a4 # v7.0.2
|
2023-03-03 02:16:57 +08:00
|
|
|
with:
|
|
|
|
base: main
|
|
|
|
branch: bot/docker-releases-json
|
|
|
|
commit-message: "github: update .github/docker-releases.json"
|
|
|
|
signoff: true
|
|
|
|
delete-branch: true
|
|
|
|
title: "Update `.github/docker-releases.json`"
|
|
|
|
body: |
|
|
|
|
Update `.github/docker-releases.json` to keep in sync with [https://github.com/moby/moby](https://github.com/moby/moby).
|
|
|
|
draft: false
|