[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR to test the GH action that auto switches the target branch for dependabot PRs #2462

Closed
wants to merge 9 commits into from
19 changes: 19 additions & 0 deletions .github/workflows/dependabot-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Change Dependabot branch to develop CHANGED FOR TESTING
on:
pull_request_target:
types:
- opened
- edited
jobs:
check-branch:
if: startsWith(github.head_ref, 'dependabot/') || startsWith(github.head_ref, 'fake-2456-test-gh-action')
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: Vankka/pr-target-branch-action@v3
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
target: fake-2456-test-gh-action
change-to: develop
Loading