Skip to content

Commit 7489948

Browse files
committed
Add action to trigger dependabot manually
1 parent ee4e3e7 commit 7489948

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Trigger Dependabot
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
dependabot:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- run: gh api repos/${{ github.repository }}/dependabot/updates -X POST
11+
env:
12+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)