generated from CCBR/CCBR_SnakemakeTemplate
-
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 pull request #146 from CCBR/mkdocs-mike
set up mkdocs mike & release actions
- Loading branch information
Showing
9 changed files
with
78 additions
and
21 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: docs | ||
on: | ||
workflow_dispatch: | ||
release: | ||
types: | ||
- published | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "docs/**" | ||
- "**.md" | ||
- .github/workflows/docs-mkdocs.yml | ||
- mkdocs.yml | ||
|
||
jobs: | ||
mkdocs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: CCBR/actions/[email protected] | ||
with: | ||
github-token: ${{ github.token }} |
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,25 @@ | ||
name: draft-release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version-tag: | ||
description: | | ||
Semantic version tag for next release. | ||
If not provided, it will be determined based on conventional commit history. | ||
Example: v2.5.11 | ||
required: false | ||
type: string | ||
default: "" | ||
|
||
jobs: | ||
draft-release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # required to include tags | ||
- uses: CCBR/actions/[email protected] | ||
with: | ||
github-token: ${{ github.token }} | ||
version-tag: ${{ github.event.inputs.version-tag }} |
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,17 @@ | ||
name: post-release | ||
|
||
on: | ||
release: | ||
types: | ||
- published | ||
|
||
jobs: | ||
cleanup: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: CCBR/actions/[email protected] | ||
with: | ||
github-token: ${{ github.token }} |
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
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,9 @@ | ||
<!-- the README is inserted here automatically--> | ||
|
||
--8<-- "README.md" | ||
|
||
<!--- write additional info that you only want to appear in the docs index here --> | ||
|
||
The CARLISLE pipeline was developed in support of NIH [Dr Vassiliki Saloura's Laboratory](https://ccr.cancer.gov/staff-directory/vassiliki-saloura) and [Dr Javed Khan's Laboratory](https://ccr.cancer.gov/staff-directory/javed-khan/lab). It has been developed and tested solely on NIH [HPC Biowulf](https://hpc.nih.gov/). | ||
|
||
![Image title](https://github.com/CCBR/CARLISLE/blob/dev/resources/img/CUTandRUN_Workflow.jpeg?raw=true) | ||
![cut-and-run workflow](img/CUTandRUN_Workflow.jpeg) |
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