Release Amplify iOS #110
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
# Creates a PR to push main to release branch to kick-off the release workflow | |
name: Release Amplify iOS V1+ | |
on: | |
workflow_dispatch: | |
permissions: | |
pull-requests: write | |
jobs: | |
release: | |
name: Release | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b | |
- name: Create PR to push main to release branch | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: "gh pr create --title 'chore: kickoff v1 release' --body 'kickoff v1 release' --head v1 --base release-v1" |