Merge pull request #450 from docker/dependabot/github_actions/peter-e… #2105
This file contains hidden or 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
| 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@fa6141aedf23596fb8bdcceab9cce8dadaa31bd9 | |
| 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@v4 | |
| - | |
| name: Download | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: docker-releases-json | |
| path: .github | |
| - | |
| name: Commit changes | |
| run: | | |
| git add -A . | |
| - | |
| name: Create PR | |
| uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5 | |
| 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 |