-
Notifications
You must be signed in to change notification settings - Fork 9
51 lines (43 loc) · 1.53 KB
/
update-dist-deps.yaml
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
51
name: 'Update dist dependencies'
on:
schedule:
- cron: '0 9 * * 1' # At 09:00 on Monday.
jobs:
update-dist:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
# https://github.com/actions/checkout
- name: 'Checkout master'
uses: actions/checkout@v2
with:
ref: master
# https://github.com/actions/setup-node
- name: 'Setup node'
uses: actions/setup-node@v3
with:
node-version: 16
- name: 'Update dist dependencies'
run: make dist.update
- name: 'Git status'
run: git status
# https://github.com/EndBug/add-and-commit
- name: 'Commit & push changes'
uses: EndBug/add-and-commit@v4
with:
author_name: GitHub Actions Bot
author_email: [email protected]
message: '[AUTO] By Github Actions: update dist dependencies'
add: "package-lock.json"
ref: master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# https://github.com/benc-uk/workflow-dispatch
- name: 'Trigger dist workflow'
uses: benc-uk/workflow-dispatch@v1
with:
workflow: Generate dist files
# The automatically provided token ${{ secrets.GITHUB_TOKEN }} can not be used,
# GitHub prevents this token from being able to fire events.
# See https://docs.github.com/en/actions/reference/events-that-trigger-workflows#triggering-new-workflows-using-a-personal-access-token
token: ${{ secrets.ACCESS_TOKEN }}