Draw tool functionality #61
Workflow file for this run
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: Change Dependabot branch to develop | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
jobs: | |
check-branch: | |
if: startsWith(github.head_ref, 'dependabot/') | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: Vankka/pr-target-branch-action@v3 | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
with: | |
target: main | |
change-to: develop |