-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into PLAT-330_Azure_docs
- Loading branch information
Showing
1,657 changed files
with
3,942 additions
and
1,503 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,29 @@ | ||
name: "Internal link checking" | ||
|
||
on: [pull_request] | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
check-internal-links: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: Check out repo | ||
uses: actions/checkout@v2 | ||
# Node is required for npm | ||
- name: Set up Node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "18" | ||
- name: Pull & update submodules recursively | ||
run: | | ||
git submodule update --init --recursive | ||
# Fail the build in PRs, but not for Netlify previews or production builds | ||
- name: Replace credentials | ||
run: | | ||
sed -Ei 's/onBroken([A-Za-z]+): "warn"/onBroken\1: "throw"/g' docusaurus.config.js | ||
# Install and build Docusaurus website | ||
- name: Build Docusaurus website | ||
run: | | ||
npm install | ||
npm run build |
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,31 @@ | ||
name: Links | ||
|
||
# https://github.com/lycheeverse/lychee-action | ||
|
||
on: | ||
repository_dispatch: | ||
workflow_dispatch: | ||
# Run on Sunday only | ||
schedule: | ||
- cron: "00 18 * * 6" | ||
|
||
jobs: | ||
linkChecker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Link Checker | ||
id: lychee | ||
uses: lycheeverse/lychee-action@v1 | ||
# --verbose --no-progress | ||
with: | ||
args: --base . -v -n -s https -s http './**/*.mdx' | ||
|
||
- name: Create Issue From File | ||
if: env.lychee_exit_code != 0 | ||
uses: peter-evans/create-issue-from-file@v4 | ||
with: | ||
title: Link Checker Report | ||
content-filepath: ./lychee/out.md | ||
labels: report, automated issue |
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 |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
# Generated files | ||
.docusaurus | ||
.cache-loader | ||
.cache | ||
|
||
# Misc | ||
.env | ||
|
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,3 +1,6 @@ | ||
[submodule "wave_docs/wave_repo"] | ||
path = wave_docs/wave_repo | ||
url = https://github.com/seqeralabs/wave | ||
[submodule "multiqc_docs/multiqc_repo"] | ||
path = multiqc_docs/multiqc_repo | ||
url = https://github.com/MultiQC/MultiQC |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# https://lychee.cli.rs/usage/config/ | ||
scheme = ["https", "http"] | ||
exclude = [ | ||
'^https://portal.azure.com/', | ||
'^https://gitlab.com/profile/personal_access_tokens' | ||
] | ||
exclude_path = [ | ||
"^.+/README.mdx", | ||
"^.+/_todo.mdx" | ||
] |
Submodule multiqc_repo
added at
db2d35
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,64 @@ | ||
export default { | ||
multiqcSidebar: [ | ||
[ | ||
"index", | ||
{ | ||
"type": "category", | ||
"label": "Getting started", | ||
"collapsed": true, | ||
"items": [ | ||
"getting_started/quick_start", | ||
"getting_started/installation", | ||
"getting_started/running_multiqc", | ||
"getting_started/config" | ||
] | ||
}, | ||
{ | ||
"type": "category", | ||
"label": "Reports", | ||
"collapsed": true, | ||
"items": [ | ||
"reports/reports", | ||
"reports/customisation" | ||
] | ||
}, | ||
"custom_content/index", | ||
{ | ||
"type": "category", | ||
"label": "Usage", | ||
"collapsed": true, | ||
"items": [ | ||
"usage/downstream", | ||
"usage/pipelines", | ||
"usage/scripts", | ||
"usage/troubleshooting" | ||
] | ||
}, | ||
{ | ||
"type": "category", | ||
"label": "Development", | ||
"collapsed": true, | ||
"items": [ | ||
"development/index", | ||
"development/modules", | ||
"development/plots", | ||
"development/plugins", | ||
"development/templates", | ||
"development/compatibility", | ||
"development/contributing" | ||
] | ||
}, | ||
{ | ||
"type": "category", | ||
"label": "Supported tools", | ||
"collapsed": true, | ||
"items": [ | ||
{ | ||
type: 'autogenerated', | ||
dirName: 'modules' | ||
} | ||
] | ||
} | ||
] | ||
] | ||
}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
Oops, something went wrong.