(turbo-module): release next canary version #99
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: | |
issue_comment: | |
types: | |
- created | |
branches: | |
- turbo-module/release-* | |
excludeBranches: | |
- turbo-module/release-*-canary | |
name: Build, test, release | |
concurrency: | |
group: update-relase-pr-${{ github.event.issue.number }} | |
cancel-in-progress: false | |
jobs: | |
update-relase-pr: | |
name: Change the version of the release based on comments | |
if: github.event.issue.pull_request | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update package.json version number | |
uses: whopio/turbo-module@v0.0.5 | |
with: | |
action: update | |
token: ${{ github.token }} |