mirror of
https://github.com/docker/actions-toolkit.git
synced 2024-11-23 19:48:45 +08:00
b3328f5ec4
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 4.2.3 to 4.2.4.
- [Release notes](https://github.com/peter-evans/create-pull-request/releases)
- [Commits](2b011faafd...38e0b6e68b
)
---
updated-dependencies:
- dependency-name: peter-evans/create-pull-request
dependency-type: direct:production
update-type: version-update:semver-patch
...
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-ignore:
|
|
- '.github/*-releases.json'
|
|
|
|
jobs:
|
|
generate:
|
|
uses: crazy-max/.github/.github/workflows/releases-json.yml@6dc31870ca6c4f8489bf5a408ab38fae60f47eec
|
|
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
|
|
uses: actions/checkout@v3
|
|
-
|
|
name: Download
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: docker-releases-json
|
|
path: .github
|
|
-
|
|
name: Commit changes
|
|
run: |
|
|
git add -A .
|
|
-
|
|
name: Create PR
|
|
uses: peter-evans/create-pull-request@38e0b6e68b4c852a5500a94740f0e535e0d7ba54
|
|
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
|