Skip to content

Commit

Permalink
Create dependency_updates.yml
Browse files Browse the repository at this point in the history
Using the workflow code from here: dependabot/dependabot-core#1297 (comment)
  • Loading branch information
vegeta897 authored Aug 7, 2020
1 parent da39b1e commit 14b56d8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/dependency_updates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# source: https://github.com/microsoft/RichCodeNavIndexer/blob/master/.github/workflows/dependency_updates.yml

name: Update dependencies

on:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:

jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- run: yarn up '*'

- name: Create pull request
uses: peter-evans/create-pull-request@v3.1.0
with:
commit-message: Update all dependencies
branch: automatic_dependency_updates
title: Update all dependencies
body: An updated update of all NPM dependencies.
#labels: auto-merge
#reviewers: # optional

0 comments on commit 14b56d8

Please sign in to comment.