Create release PRs #11
Workflow file for this run
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
name: Create release PRs | |
on: | |
create | |
jobs: | |
build: | |
runs-on: macOS-latest | |
if: contains(github.ref, 'release') # allow to filter on release branches only | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6.5 | |
- name: Bundle install | |
run: bundle install | |
- name: Prepare release | |
env: | |
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN_CI }} | |
run: bundle exec fastlane create_release_pr |