-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from crazy-max/docker-releases
ci: generate docker-releases.json
- Loading branch information
Showing
5 changed files
with
62 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
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@2a596c917a8ad3e6203ae99b777148525a2e00d5 | ||
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@2b011faafdcbc9ceb11414d64d0573f37c774b04 | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters