feat: comment on pull requests with the next version of the software, if it deploys #127
This file contains 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
on: [pull_request] | |
jobs: | |
print-pr-stack: | |
name: Display the PR stack | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write # Required for PR comments | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: git-town/action@v1 | |
with: | |
main-branch: 'alpha' | |
perennial-regex: '^feat/.*$' |