-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
7,251 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
groups: | ||
prod-dependencies: | ||
dependency-type: "production" | ||
dev-dependencies: | ||
dependency-type: "development" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# This is an example of the docs-pr.yml workflow available from the recrwplay org | ||
name: "Verify Branch" | ||
|
||
on: | ||
# push: | ||
# branches: | ||
# - dev | ||
# schedule: | ||
# - cron: '00 16 * * *' | ||
workflow_dispatch: | ||
inputs: | ||
html: | ||
description: 'Generate HTML' | ||
type: boolean | ||
required: false | ||
default: true | ||
links: | ||
description: 'Check links' | ||
type: boolean | ||
required: false | ||
default: true | ||
lint: | ||
description: 'Lint docs' | ||
type: boolean | ||
required: false | ||
default: true | ||
|
||
jobs: | ||
|
||
docs-build: | ||
if: ${{ inputs.html }} | ||
name: Generate HTML | ||
uses: neo4j/docs-tools/.github/workflows/reusable-docs-build.yml@v1.0.3 | ||
with: | ||
retain-artifacts: 14 | ||
deploy-id: 0 | ||
|
||
docs-verify: | ||
name: Verify HTML | ||
needs: docs-build | ||
uses: neo4j/docs-tools/.github/workflows/reusable-docs-verify.yml@v1.0.3 | ||
|
||
docs-links: | ||
if: ${{ inputs.links }} | ||
name: Check links | ||
needs: docs-build | ||
uses: neo4j/docs-tools/.github/workflows/reusable-docs-links.yml@v1.0.3 | ||
|
||
docs-lint: | ||
if: ${{ inputs.lint }} | ||
name: Lint docs | ||
uses: neo4j/docs-tools/.github/workflows/reusable-docs-lint.yml@v1.0.3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.