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 85ebfbf commit 5501693Copy full SHA for 5501693
.github/workflows/dotnet.yml
@@ -110,3 +110,15 @@ jobs:
110
echo "${0##*/}": Pushing $package...
111
dotnet nuget push $package --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_KEY }} --skip-duplicate
112
done
113
+
114
+ dependabot:
115
+ runs-on: ubuntu-latest
116
+ needs: build
117
+ if: success() && github.event_name == 'pull_request' && github.actor == 'dependabot[bot]'
118
119
+ steps:
120
+ - name: Enable Auto-Merge for Dependabot PRs
121
+ run: gh pr merge --auto --merge "$PR_URL"
122
+ env:
123
+ PR_URL: ${{github.event.pull_request.html_url}}
124
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments