Merge pull request #19 from crazy-max/enable-openpr-job

ci: enable open-pr job
This commit is contained in:
CrazyMax
2023-02-02 17:09:12 +01:00
committed by GitHub

View File

@@ -24,36 +24,35 @@ jobs:
filename: buildx-releases.json filename: buildx-releases.json
secrets: inherit secrets: inherit
# FIXME: Uncomment when repo public open-pr:
# open-pr: runs-on: ubuntu-22.04
# runs-on: ubuntu-22.04 if: github.event_name != 'pull_request'
# if: github.event_name != 'pull_request' needs:
# needs: - generate
# - generate steps:
# steps: -
# - name: Checkout
# name: Checkout uses: actions/checkout@v3
# uses: actions/checkout@v3 -
# - name: Download
# name: Download uses: actions/download-artifact@v3
# uses: actions/download-artifact@v3 with:
# with: name: buildx-releases-json
# name: buildx-releases-json path: .github
# path: .github -
# - name: Commit changes
# name: Commit changes run: |
# run: | git add -A .
# git add -A . -
# - name: Create PR
# name: Create PR uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04
# uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 with:
# with: base: master
# base: master branch: bot/buildx-releases-json
# branch: bot/buildx-releases-json commit-message: "github: update .github/buildx-releases.json"
# commit-message: "github: update .github/buildx-releases.json" signoff: true
# signoff: true delete-branch: true
# delete-branch: true title: "Update `.github/buildx-releases.json`"
# title: "Update `.github/buildx-releases.json`" body: |
# body: | Update `.github/buildx-releases.json` to keep in sync with [https://github.com/docker/buildx](https://github.com/docker/buildx).
# Update `.github/buildx-releases.json` to keep in sync with [https://github.com/docker/buildx](https://github.com/docker/buildx). draft: false
# draft: false