-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: migrate to docusaurus implementation (#595)
- Loading branch information
Showing
16 changed files
with
372 additions
and
331 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
titleOnly: true | ||
titleOnly: false | ||
commitsOnly: false | ||
titleAndCommits: false | ||
allowMergeCommits: false | ||
titleAndCommits: true | ||
allowMergeCommits: true |
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,38 @@ | ||
name: 'dhis2: verify (commits)' | ||
|
||
on: | ||
pull_request: | ||
types: ['opened', 'edited', 'reopened', 'synchronize'] | ||
|
||
jobs: | ||
lint-pr-title: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: 'yarn' | ||
- run: yarn install --frozen-lockfile | ||
- id: commitlint | ||
run: echo ::set-output name=config_path::$(node -e "process.stdout.write(require('@dhis2/cli-style').config.commitlint)") | ||
- uses: JulienKode/[email protected] | ||
with: | ||
configuration-path: ${{ steps.commitlint.outputs.config_path }} | ||
|
||
lint-commits: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: 'yarn' | ||
- run: yarn install --frozen-lockfile | ||
- id: commitlint | ||
run: echo ::set-output name=config_path::$(node -e "process.stdout.write(require('@dhis2/cli-style').config.commitlint)") | ||
- uses: wagoid/commitlint-github-action@v5 | ||
with: | ||
configFile: ${{ steps.commitlint.outputs.config_path }} |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
- [**Getting Started**](getting-started) | ||
- **Commands** | ||
- - [`d2`](commands/d2) | ||
- - `d2 app` | ||
- - - [`d2 app scripts`↗️](https://platform.dhis2.nu/#/scripts ':ignore') | ||
- - [`d2 cluster`](commands/d2-cluster) | ||
- - - [Use a stable version](recipes/stable) | ||
- - - [Use a development version](recipes/development) | ||
- - - [Use a custom Docker image](recipes/custom-image) | ||
- - - [Use a custom `dhis.conf`](recipes/custom-dhis-config) | ||
- - [`d2 style`↗️](https://cli-style.dhis2.nu ':ignore') | ||
- - `d2 utils` | ||
- - - [`d2 utils release`](commands/d2-utils-release) | ||
- - - [`d2 utils cypress`↗️](https://cli-utils-cypress.dhis2.nu ':ignore') | ||
- - - [`d2 utils docsite`↗️](https://cli-utils-docsite.dhis2.nu ':ignore') | ||
- - [`d2 style`↗️](https://cli-style.dhis2.nu ':ignore') | ||
- - [`d2 app scripts`↗️](https://platform.dhis2.nu/#/scripts ':ignore') | ||
- | ||
- [Changelog](CHANGELOG) |
Oops, something went wrong.