Skip to content

Commit b442547

Browse files
authored
fix(ga): Add GitHub Actions workflow to manually trigger Dependabot. (#798)
- Created a new workflow file `.github/workflows/run-dependabot.yml` to allow manual triggering of Dependabot using the `workflow_dispatch` event. - Configured the workflow to run Dependabot for GitHub Actions updates.
1 parent ce31126 commit b442547

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Run Dependabot
2+
3+
on:
4+
workflow_dispatch: # Allows manual triggering of the workflow
5+
6+
jobs:
7+
dependabot:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v4
12+
13+
- name: Run Dependabot
14+
uses: dependabot/fetch-metadata@v1
15+
with:
16+
package-ecosystem: "github-actions"
17+
directory: "/"
18+
schedule:
19+
interval: "daily"

0 commit comments

Comments
 (0)