Merge pull request #388 from nulib/deploy/staging #22
Workflow file for this run
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: Increment Version & Create Draft PR | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| increment: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| ref: deploy/staging | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Bump Version | |
| id: increment | |
| run: | | |
| NEXT_VERSION=$(make version BUMP=patch) | |
| git config --global user.name 'github-actions[bot]' | |
| git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
| git commit -am "Bump version to ${NEXT_VERSION}" | |
| - name: Push changes | |
| uses: ad-m/github-push-action@master | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| branch: deploy/staging | |
| - name: Read PR Template | |
| id: template | |
| uses: jaywcjlove/github-action-read-file@main | |
| with: | |
| path: .github/PULL_REQUEST_TEMPLATE/production.md | |
| - name: Create New Production PR | |
| uses: repo-sync/pull-request@v2 | |
| with: | |
| source_branch: deploy/staging | |
| destination_branch: main | |
| pr_label: "release" | |
| pr_title: Deploy vX.X.X to production | |
| pr_body: | | |
| ${{ steps.template.outputs.content }} | |
| pr_draft: true |