We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a07823 commit f9c40b1Copy full SHA for f9c40b1
1 file changed
.github/workflows/repl_docs.yml
@@ -21,9 +21,11 @@ name: repl_docs
21
22
# Workflow triggers:
23
on:
24
- push:
+ pull_request:
25
branches:
26
- develop
27
+ types:
28
+ - closed
29
paths:
30
# List paths for which changes should trigger this workflow:
31
- 'lib/**/namespace/lib/**'
@@ -44,6 +46,9 @@ jobs:
44
46
# Define a display name:
45
47
name: 'Update REPL docs'
48
49
+ # Only run this job if the pull request was merged:
50
+ if: github.event.pull_request.merged == true
51
+
52
# Define the type of virtual host machine:
53
runs-on: ubuntu-latest
54
0 commit comments