We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60c301f commit b635cd3Copy full SHA for b635cd3
.github/workflows/auto-merge.yml
@@ -28,7 +28,7 @@ jobs:
28
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
29
30
- name: Auto-merge dependabot PRs for go-openapi patches
31
- if: contains(steps.metadata.outputs.dependency-group, 'go-openapi-dependencies') && steps.metadata.outputs.update-type == 'version-update:semver-patch'
+ if: contains(steps.metadata.outputs.dependency-group, 'go-openapi-dependencies') && (steps.metadata.outputs.update-type == 'version-update:semver-minor' || steps.metadata.outputs.update-type == 'version-update:semver-patch')
32
run: gh pr merge --auto --rebase "$PR_URL"
33
env:
34
PR_URL: ${{github.event.pull_request.html_url}}
0 commit comments