We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
develop
1 parent f55f362 commit 405ac40Copy full SHA for 405ac40
1 file changed
.github/workflows/markdown_equations.yml
@@ -21,12 +21,14 @@ name: markdown_equations
21
22
# Workflow triggers:
23
on:
24
- # push:
25
- # branches:
26
- # - develop
27
- # paths:
28
- # # List paths for which changes should trigger this workflow:
29
- # - 'lib/**/*.md'
+ pull_request:
+ branches:
+ - develop
+ types:
+ - closed
+ paths:
30
+ # List paths for which changes should trigger this workflow:
31
+ - 'lib/**/*.md'
32
33
# Workflow jobs:
34
jobs:
@@ -37,6 +39,9 @@ jobs:
37
39
# Define a display name:
38
40
name: 'Update equations'
41
42
+ # Only run this job if the pull request was merged:
43
+ if: github.event.pull_request.merged == true
44
+
45
# Define the type of virtual host machine:
46
runs-on: ubuntu-latest
47
0 commit comments