-
Notifications
You must be signed in to change notification settings - Fork 22
50 lines (42 loc) · 1.41 KB
/
dependency-update.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
45
46
47
48
49
50
name: Dependencies
on:
workflow_dispatch:
schedule:
- cron: "00 20 * * *"
jobs:
checks:
name: 'Update'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: npm install
run: |
npm install
npm list
- name: tsc build
run: npm run tools
- name: Update dependency
id: update
run: node ./dist/tools/dependency.js
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.JAYLYBOT_TOKEN }}
push-to-fork: jayly-bot/ScriptAPI
commit-message: Update package.json and package-lock.json
title: Update npm packages
body: Updated NPM packages in package.json, please review.
branch: dependency/update
base: main
author: jayly-bot <121162959+jayly-bot@users.noreply.github.com>
- name: Check outputs
if: ${{ steps.cpr.outputs.pull-request-number }}
run: |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
gh pr edit ${{ steps.cpr.outputs.pull-request-number }} --add-label "dependencies"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_REQUEST: ${{ steps.cpr.outputs.pull-request-url }}