Open Release PR #1
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: 'Open Release PR' | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| release_type: | |
| description: 'Release type' | |
| required: true | |
| type: choice | |
| options: | |
| - major | |
| - minor | |
| - patch | |
| default: minor | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| # Fetch full history so tools that read tags/changelog (if any) work | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: 💾 Cache dependencies | |
| id: cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: '**/node_modules' | |
| key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
| - name: 📦 Install dependencies if cache miss | |
| if: steps.cache.outputs.cache-hit != 'true' | |
| run: yarn install --immutable | |
| - name: Run release | |
| run: yarn version ${{ inputs.release_type }} | |
| - name: Create PR with release changes | |
| id: cpr | |
| uses: peter-evans/create-pull-request@v7 | |
| env: | |
| HUSKY: 0 | |
| with: | |
| # branch name is unique per run | |
| branch: "release/${{ inputs.release_type }}-${{ github.run_id }}" | |
| commit-message: "chore(release): ${{ inputs.release_type }} version bump" | |
| title: "(chore): Release ${{ inputs.release_type }} version" | |
| body: | | |
| This PR was created automatically via **workflow_dispatch**. | |
| **Command run** | |
| ``` | |
| yarn release ${{ inputs.release_type }} | |
| ``` | |
| Please review the changes (version bumps, changelog, etc.) and merge. :) | |
| labels: | | |
| release | |
| automated-pr | |
| delete-branch: true | |
| author: "OpenMRS Bot <infrastructure@openmrs.org>" | |
| committer: "OpenMRS Bot <infrastructure@openmrs.org>" | |
| token: ${{ secrets.OMRS_BOT_GH_TOKEN || secrets.GITHUB_TOKEN }} |