.github/workflows/create_pr_to_develop.yml #340
Workflow file for this run
This file contains hidden or 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 Pull request from release branch to develop | ||
| on: | ||
| push: | ||
| branches: | ||
| - 'releases/**' | ||
| jobs: | ||
| create-pr-to-develop: | ||
| name: Create PR to develop | ||
| uses: tangem-developments/actions/.github/workflows/create_pr.yml@main | ||
|
Check failure on line 10 in .github/workflows/create_pr_to_develop.yml
|
||
| with: | ||
| source_branch: ${{ github.ref_name }} | ||
| target_branch: develop | ||
| replace_android_tangem_dependencies: true | ||
| secrets: | ||
| AUTO_MERGE_TOKEN: ${{ secrets.AUTO_MERGE_TOKEN }} | ||