Skip to content

Commit 489a12f

Browse files
committed
Add trigger to github action to merge on pushes to master branch, update github checkout action
1 parent af972e3 commit 489a12f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/rdme-openapi-pr.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
name: Build and sync docs on merge
1+
name: Build and sync docs on PR merge or pushes to master branch
22

33
on:
4+
push:
5+
branches:
6+
- master
47
pull_request:
8+
branches:
9+
- master
510
types:
611
- closed
712

@@ -11,8 +16,7 @@ jobs:
1116
runs-on: ubuntu-latest
1217
steps:
1318
- name: Check out repo 📚
14-
uses: actions/checkout@v3
15-
19+
uses: actions/checkout@v4
1620
- name: Run `openapi` command 🚀
1721
uses: readmeio/rdme@v8
1822
with:

0 commit comments

Comments
 (0)