We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97fb359 commit a26feddCopy full SHA for a26fedd
.github/workflows/build.yml
@@ -16,7 +16,7 @@ jobs:
16
- name: Use Node.js ${{ matrix.node_version }}
17
uses: actions/setup-node@v1
18
with:
19
- node_version: ${{ matrix.node_version }}
+ node-version: ${{ matrix.node_version }}
20
- name: build
21
run: |
22
yarn install
@@ -28,3 +28,8 @@ jobs:
28
git add .
29
git commit -m ":robot: build automatically"
30
git push
31
+ - name: repository dispatch
32
+ uses: peter-evans/repository-dispatch@v1
33
+ with:
34
+ token: ${{ secrets.GH_TOKEN }}
35
+ event-type: build-event
.github/workflows/schedule.yml
@@ -1,8 +1,7 @@
1
name: Update gist
2
on:
3
- push:
4
- branches:
5
- - master
+ repository_dispatch:
+ types: [build-event]
6
schedule:
7
- cron: "0 0 * * *"
8
jobs:
0 commit comments