Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
59 lines
1.5 KiB
YAML
59 lines
1.5 KiB
YAML
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:
|
|
paths:
|
|
- '.github/workflows/docker-releases-json.yml'
|
|
|
|
jobs:
|
|
generate:
|
|
uses: crazy-max/.github/.github/workflows/releases-json.yml@7f83a5a887650a38e4d0e05d5262309cfaa31459
|
|
with:
|
|
repository: moby/moby
|
|
artifact_name: docker-releases-json
|
|
filename: docker-releases.json
|
|
secrets: inherit
|
|
|
|
open-pr:
|
|
runs-on: ubuntu-24.04
|
|
if: github.event_name != 'pull_request'
|
|
needs:
|
|
- generate
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v5
|
|
-
|
|
name: Download
|
|
uses: actions/download-artifact@v5
|
|
with:
|
|
name: docker-releases-json
|
|
path: .github
|
|
-
|
|
name: Commit changes
|
|
run: |
|
|
git add -A .
|
|
-
|
|
name: Create PR
|
|
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
|
|
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
|