ci: GH-3 Defining changeset workflow (#9) #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: Create version PR | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| version-pr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - name: Install tools | |
| run: go install tool | |
| - name: Validate release prerequisites | |
| run: | | |
| test -f go.work || (echo "go.work missing" && exit 1) | |
| test -f version.txt || (echo "version.txt missing" && exit 1) | |
| - name: Apply pending changesets | |
| run: changeset each --filter open-changesets -- changeset version | |
| - name: Create or update release PR | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| commit-message: "chore(release): apply changesets" | |
| title: "chore(release): apply changesets" | |
| body: | | |
| Automated release update generated from pending changesets. | |
| This PR updates: | |
| - version.txt | |
| - CHANGELOG.md | |
| - consumed .changeset files | |
| branch: chore/release-changesets | |
| delete-branch: true | |
| labels: release |