We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6efc93 commit 2e3d672Copy full SHA for 2e3d672
.github/workflows/deploy-pages.yml
@@ -1,13 +1,18 @@
1
name: Deploy 🚚 IMCF 🔬 pages and API docs
2
3
on:
4
- # Run on pushes targeting the default branch
+ # Run on pushes targeting the default branch.
5
push:
6
branches: ["main"]
7
8
- # Allowto run this workflow manually from the Actions tab
+ # Allow to run this workflow manually from the Actions tab.
9
workflow_dispatch:
10
11
+ # Listen to dispatch events through the GitHub API. Can be used to trigger
12
+ # this workflow from other repositories / actions.
13
+ repository_dispatch:
14
+ types: [deploy-pages]
15
+
16
# Set permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
17
permissions:
18
contents: read
0 commit comments