hs-action-test #81
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: Automated post-release PR management | |
# on: | |
# workflow_dispatch: | |
# push: | |
# branches: | |
# - master | |
# | |
# jobs: | |
# create_post_release_pr: | |
# name: Create master to develop PR | |
# runs-on: ubuntu-latest | |
# | |
# steps: | |
# - name: Checkout develop branch | |
# uses: actions/checkout@master | |
# | |
# - name: Create Branch | |
# uses: ./.github/actions/post-release | |
# with: | |
# branch: 'master-to-develop' | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |