Merge pull request #73 from MistySOM/fix-warnings #33
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 promotion pull request | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
release-promotion: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Create a pull request from develop to master | |
- name: Create Pull Request | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh pr create --base master --head develop \ | |
--title "Merge from develop to master" \ | |
--body "This is an automated pull request created by GitHub Actions." \ | |
--reviewer matinlotfali \ | |
--reviewer mistyron |