We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd49b5d commit bd9e209Copy full SHA for bd9e209
.github/workflows/dependabot-auto-merge.yaml
@@ -16,8 +16,11 @@ jobs:
16
with:
17
github-token: "${{ secrets.GITHUB_TOKEN }}"
18
- name: Enable auto-merge for Dependabot PRs
19
- if: steps.metadata.outputs.update-type != 'version-update:semver-major' || steps.metadata.outputs.package-ecosystem == 'github_actions'
+ if: |
20
+ steps.metadata.outputs.update-type != 'version-update:semver-major' ||
21
+ steps.metadata.outputs.package-ecosystem == 'github_actions' ||
22
+ steps.metadata.outputs.dependency-names == 'no.nav.dagpenger:dp-version-catalog'
23
run: gh pr merge --auto --squash "$PR_URL"
24
env:
25
PR_URL: ${{github.event.pull_request.html_url}}
- GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
26
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments