Skip to content

Commit

Permalink
Create bump_deps.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jul 17, 2020
1 parent c27962a commit c35deb0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/bump_deps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Bump_Dependencies

on:
schedule:
- cron: "0 0 * * *"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: '14'
- run: |
npm ci
npm run bump
npm install
- uses: peter-evans/create-pull-request@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Update dependencies
title: "[AUTO] Update dependencies"
labels: Dependencies
branch: "Bump"

0 comments on commit c35deb0

Please sign in to comment.