-
Notifications
You must be signed in to change notification settings - Fork 13
44 lines (36 loc) · 1.23 KB
/
Update Yonode Package.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Update Yonode Package
on:
schedule:
# Runs every day at 05:00 UTC
- cron: '*/5 * * * *'
workflow_dispatch:
jobs:
update-yonode:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Change directory to yonode
run: cd packages/yonode-templates/JS-MongoDB-Mongoose-Auth-Template
- name: Install npm-check-updates
run: npm install -g npm-check-updates
- name: Update package.json if newer versions are available
run: |
ncu -u
- name: Create Pull Request for updated package.json
id: cpr
uses: peter-evans/create-pull-request@v4
with:
commit-message: Update dependencies in Yonode
title: 'Update Yonode dependencies'
body: 'This pull request updates dependencies for the Yonode package.'
branch: 'update-yonode-dependencies'
base: 'main'
labels: 'dependencies'
token: ${{ secrets.GITHUB_TOKEN }}
- name: Check outputs
run: echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"