Skip to content

Commit 872bc67

Browse files
committed
✏️ Adjust the trigger conditions to be correct for the documentation workflow.
1 parent 0d08244 commit 872bc67

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/documentation.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,33 @@ on:
44
push:
55
branches:
66
# - "develop/**" # For development and testing
7-
- "<your_base_branch>"
7+
- master
88
paths:
99
# Documentation
1010
# Doc - CI workflow
1111
- ".github/workflows/documentation.yaml"
1212
- "scripts/ci/**documentation**.sh"
1313
# Doc - Font-End config
14-
- "docs/package.json"
15-
- "docs/pnpm-lock.yaml"
14+
- "docs_with_docusarus/package.json"
15+
- "docs_with_docusarus/pnpm-lock.yaml"
1616
# Doc - Docusaurus config
17-
- "docs/docusaurus.config.ts"
17+
- "docs_with_docusarus/docusaurus.config.ts"
1818
# Doc - Content
19-
- "docs/**/*.md"
20-
- "docs/**/*.mdx"
21-
- "docs/**/*.ts"
22-
- "docs/**/*.tsx"
23-
- "docs/**/*.js"
24-
- "docs/**/*.jsx"
25-
- "docs/**/*.css"
19+
- "docs_with_docusarus/**/*.md"
20+
- "docs_with_docusarus/**/*.mdx"
21+
- "docs_with_docusarus/**/*.ts"
22+
- "docs_with_docusarus/**/*.tsx"
23+
- "docs_with_docusarus/**/*.js"
24+
- "docs_with_docusarus/**/*.jsx"
25+
- "docs_with_docusarus/**/*.css"
2626
# Doc - versioning (Docusaurus versioned content)
27-
- "docs/*_versions.json"
28-
- "docs/*_versioned_docs/**"
29-
- "docs/*_versioned_sidebars/**"
27+
- "docs_with_docusarus/*_versions.json"
28+
- "docs_with_docusarus/*_versioned_docs/**"
29+
- "docs_with_docusarus/*_versioned_sidebars/**"
3030
workflow_run:
3131
workflows: ["release"]
3232
types: [completed]
33-
branches: ["<your_base_branch>"]
33+
branches: ["master"]
3434

3535
permissions:
3636
contents: write

0 commit comments

Comments
 (0)