We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4e441b commit 4e99cf0Copy full SHA for 4e99cf0
.github/workflows/build-mkdocs-website.yml
@@ -15,7 +15,9 @@ permissions:
15
16
jobs:
17
build-and-deploy:
18
- if: ${{github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true}}
+ if: |
19
+ github.event_name == 'workflow_dispatch' ||
20
+ (github.event_name == 'pull_request' && github.event.pull_request.merged == true)
21
runs-on: ubuntu-latest
22
23
steps:
0 commit comments