Skip to content

Commit cc169b0

Browse files
Add refresh action
Adds action to "refresh" our doc examples on pushes to master or when triggered manually.
1 parent 86fe517 commit cc169b0

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/refresh.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Refresh
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ master ]
7+
8+
jobs:
9+
Refresh:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Trigger refresh of docs examples
14+
run: ${{ secrets.WEBHOOK_TRIGGERS }}

0 commit comments

Comments
 (0)