How do I run the dependabot against the feature branches?
What i m trying to do is to find the vulnerabilities of the third-party packages(Not in the default branch)
Here is my dependabot.yml file configuration which is stored in the .github directory
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
# Only allow updates to the lockfile
versioning-strategy: lockfile-only
target-branch: feat/IDPDI-1441
But when I pushed still the dependabot is running against the master branch not in feature branch
Note: My application is an angular application