Add bad_output_process_model
option and use_fixed_model_version
o…
#9
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: Merge Release Into Main | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'release' | |
jobs: | |
main: | |
name: Create PR Release to Main | |
runs-on: ubuntu-latest | |
steps: | |
- name: git checkout | |
uses: actions/checkout@v3 | |
- name: create pull request | |
id: open-pr | |
uses: repo-sync/pull-request@v2 | |
with: | |
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
destination_branch: ${{ github.event.repository.default_branch }} | |
pr_title: "[Automated] Merge ${{ github.ref_name }} into ${{ github.event.repository.default_branch }}" | |
pr_body: "Automated Pull Request" |