From 935616fe9fd925a55fcdad7d573ccbbe4fa867c7 Mon Sep 17 00:00:00 2001 From: Jirka Borovec <6035284+Borda@users.noreply.github.com> Date: Fri, 13 Oct 2023 01:12:21 +0900 Subject: [PATCH] ci/release: create a PR for release bump (#18791) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .github/workflows/release-pkg.yml | 44 ++++++++++++++++++++++--------- 1 file changed, 31 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release-pkg.yml b/.github/workflows/release-pkg.yml index 7624b6d241..03b0db009d 100644 --- a/.github/workflows/release-pkg.yml +++ b/.github/workflows/release-pkg.yml @@ -76,9 +76,6 @@ jobs: with: repository: gridai/base-images token: ${{ secrets.PAT_GHOST }} - - uses: actions/setup-python@v4 - with: - python-version: ${{ env.PYTHON_VER }} - name: Update lightning version run: | import json, os @@ -88,24 +85,45 @@ jobs: vers["lightning_version"] = os.getenv('TAG') with open(fname, "w", encoding="utf-8") as fopen: json.dump(vers, fopen, indent=2) + # satisfy pre-commit with line fixer + fopen.write(os.linesep) shell: python - run: cat versions.json - - name: GIT commit & push - run: | - git config --global user.name "PL Ghost" - git config --global user.email pl-github@grid.ai - git checkout -b ${BRANCH_NAME} - git add versions.json - git status - git commit -m "bumping lightning version -> ${TAG}" - git push -u origin ${BRANCH_NAME} -f + + - name: Create Pull Request + if: github.event_name != 'pull_request' + uses: peter-evans/create-pull-request@v5 + with: + title: "Bump lightning ver `${{ env.TAG }}`" + committer: GitHub + author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> + token: ${{ secrets.PAT_GHOST }} + add-paths: versions.json + commit-message: "bumping lightning version -> (${{ env.TAG }})" + branch: "bump/lightning-${{ env.TAG }}" + # Delete the branch when closing pull requests, and when undeleted after merging. + delete-branch: true + # the PR"s body/content + body: > + **This is automated update with the latest lighting + [release](https://github.com/Lightning-AI/lightning/releases/tag/${{ env.TAG }})!** + + Please, act swiftly to land this PR as it is effectively blocking lightning release to be finished... + assignees: | + justusschock + borda + reviewers: | + justusschock + ethanwharris + borda waiting: runs-on: ubuntu-22.04 needs: [release-version, signaling] env: TAG: ${{ needs.release-version.outputs.tag }} - timeout-minutes: 90 + # due to PR process this may take longer + timeout-minutes: 180 steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v4