Skip to content

Commit 14b56d8

Browse files
authored
Create dependency_updates.yml
Using the workflow code from here: dependabot/dependabot-core#1297 (comment)
1 parent da39b1e commit 14b56d8

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# source: https://github.com/microsoft/RichCodeNavIndexer/blob/master/.github/workflows/dependency_updates.yml
2+
3+
name: Update dependencies
4+
5+
on:
6+
schedule:
7+
- cron: '0 2 * * *'
8+
workflow_dispatch:
9+
10+
jobs:
11+
update:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- run: yarn up '*'
17+
18+
- name: Create pull request
19+
uses: peter-evans/[email protected]
20+
with:
21+
commit-message: Update all dependencies
22+
branch: automatic_dependency_updates
23+
title: Update all dependencies
24+
body: An updated update of all NPM dependencies.
25+
#labels: auto-merge
26+
#reviewers: # optional

0 commit comments

Comments
 (0)