Skip to content

Commit

Permalink
chore: add GitHub Workflow to update NodeJS versions every night
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Insler authored and alexeagle committed Nov 20, 2020
1 parent 185c632 commit 681c668
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/update-nodejs-versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# See https://github.com/marketplace/actions/github-action-for-yarn

name: Update NodeJS Versions

on:
schedule:
# run at 01:30 UTC daily
- cron: "30 1 * * *"

jobs:
updateNodejsVersions:
runs-on: ubuntu-latest

steps:
- name: Git Checkout
uses: actions/checkout@v2
with:
fetch-depth:

- name: Run yarn update-nodejs-versions
uses: borales/actions-yarn@v2.0.0
with:
cmd: update-nodejs-versions

- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.PAT }}
commit-message: Update NodeJS Versions
title: Update NodeJS Versions
body: |
- Updated NodeJS Versions using `yarn update-nodejs-versions`
Auto-generated by [create-pull-request][1]

[1]: https://github.com/peter-evans/create-pull-request
branch: update-nodejs-versions

0 comments on commit 681c668

Please sign in to comment.