Skip to content

Commit 7f60c38

Browse files
committed
Workflows 1.2.0 (#2118)
Note that `branch-checks` is an experimental workflow
1 parent c2b60da commit 7f60c38

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

.github/workflows/docs-branch-checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,23 @@ jobs:
3030
docs-build:
3131
if: ${{ inputs.html || github.event_name == 'push' }}
3232
name: Generate HTML
33-
uses: neo4j/docs-tools/.github/workflows/reusable-docs-build.yml@v1.0.3
33+
uses: neo4j/docs-tools/.github/workflows/reusable-docs-build.yml@v1.2.0
3434
with:
3535
retain-artifacts: 14
3636
deploy-id: 0
3737

3838
docs-verify:
3939
name: Verify HTML
4040
needs: docs-build
41-
uses: neo4j/docs-tools/.github/workflows/reusable-docs-verify.yml@v1.0.3
41+
uses: neo4j/docs-tools/.github/workflows/reusable-docs-verify.yml@v1.2.0
4242

4343
docs-links:
4444
if: ${{ inputs.links || github.event_name == 'push' }}
4545
name: Check links
4646
needs: docs-build
47-
uses: neo4j/docs-tools/.github/workflows/reusable-docs-links.yml@v1.0.3
47+
uses: neo4j/docs-tools/.github/workflows/reusable-docs-links.yml@v1.2.0
4848

4949
docs-lint:
5050
if: ${{ inputs.lint || github.event_name == 'push' }}
5151
name: Lint docs
52-
uses: neo4j/docs-tools/.github/workflows/reusable-docs-lint.yml@v1.0.3
52+
uses: neo4j/docs-tools/.github/workflows/reusable-docs-lint.yml@v1.2.0

.github/workflows/docs-pr-checks.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ name: "Verify docs PR"
44
on:
55
pull_request:
66
branches:
7-
- "dev"
8-
- "5.x"
9-
- "4.[0-9]"
10-
- "3.5"
7+
- 'dev'
8+
- 'main'
9+
- '5.x'
10+
- '4.4'
1111

1212
jobs:
1313

1414
# Generate HTML
1515
docs-build-pr:
16-
uses: neo4j/docs-tools/.github/workflows/reusable-docs-build.yml@v1.1.2
16+
uses: neo4j/docs-tools/.github/workflows/reusable-docs-build.yml@v1.2.0
1717
with:
1818
deploy-id: ${{ github.event.number }}
1919
retain-artifacts: 14
@@ -23,7 +23,7 @@ jobs:
2323
# By default, the job fails if there are errors, passes if there are warnings only.
2424
docs-verify-pr:
2525
needs: docs-build-pr
26-
uses: neo4j/docs-tools/.github/workflows/reusable-docs-verify.yml@v1.1.2
26+
uses: neo4j/docs-tools/.github/workflows/reusable-docs-verify.yml@v1.2.0
2727
with:
2828
failOnWarnings: true
2929

@@ -55,7 +55,7 @@ jobs:
5555
docs-updates-comment-pr:
5656
if: needs.docs-build-pr.outputs.pages-listed == 'success'
5757
needs: [docs-build-pr, docs-changes-pr]
58-
uses: neo4j/docs-tools/.github/workflows/reusable-docs-pr-changes.yml@v1.1.2
58+
uses: neo4j/docs-tools/.github/workflows/reusable-docs-pr-changes.yml@v1.2.0
5959
with:
6060
pages-modified: ${{ needs.docs-changes-pr.outputs.pages-modified }}
6161
pages-added: ${{ needs.docs-changes-pr.outputs.pages-added }}

.github/workflows/docs-teardown.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ name: "Documentation Teardown"
33

44
on:
55
pull_request_target:
6+
branches:
7+
- 'dev'
8+
- 'main'
9+
- '5.x'
10+
- '4.4'
611
types:
712
- closed
813

0 commit comments

Comments
 (0)