File tree Expand file tree Collapse file tree 4 files changed +74
-1
lines changed Expand file tree Collapse file tree 4 files changed +74
-1
lines changed Original file line number Diff line number Diff line change 1- 24.06 .00
1+ 24.10 .00
Original file line number Diff line number Diff line change 1+ # https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners
2+ # Order matters - match of highest importance goes last (last match wins)
3+
4+ # doc code owners
5+ datasets / @ rapidsai/cugraph-doc-codeowners
6+ notebooks / @ rapidsai/cugraph-doc-codeowners
7+ docs / @ rapidsai/cugraph-doc-codeowners
8+ ** /* .txt @ rapidsai/cugraph-doc-codeowners
9+ ** /* .md @ rapidsai/cugraph-doc-codeowners
10+ ** /* .rst @ rapidsai/cugraph-doc-codeowners
11+ ** /* .ipynb @ rapidsai/cugraph-doc-codeowners
12+ ** /* .pdf @ rapidsai/cugraph-doc-codeowners
13+ ** /* .png @ rapidsai/cugraph-doc-codeowners
14+
15+
16+ # CI code owners
17+ /.github / @ rapidsai/ci-codeowners
18+ /ci / @ rapidsai/ci-codeowners
19+ /.pre-commit-config.yaml @ rapidsai/ci-codeowners
Original file line number Diff line number Diff line change 1+ name : build
2+
3+ on :
4+ push :
5+ branches :
6+ - " branch-*"
7+ tags :
8+ - v[0-9][0-9].[0-9][0-9].[0-9][0-9]
9+ workflow_dispatch :
10+ inputs :
11+ branch :
12+ required : true
13+ type : string
14+ date :
15+ required : true
16+ type : string
17+ sha :
18+ required : true
19+ type : string
20+ build_type :
21+ type : string
22+ default : nightly
23+
24+ concurrency :
25+ group : ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
26+ cancel-in-progress : true
27+
28+ jobs :
29+ docs-build :
30+ if : github.ref_type == 'branch'
31+ needs : python-build
32+ secrets : inherit
33+ uses :
rapidsai/shared-workflows/.github/workflows/[email protected] 34+ with :
35+ arch : " amd64"
36+ branch : ${{ inputs.branch }}
37+ build_type : ${{ inputs.build_type || 'branch' }}
38+ container_image : " rapidsai/ci-conda:cuda11.8.0-ubuntu22.04-py3.10"
39+ date : ${{ inputs.date }}
40+ node_type : " gpu-v100-latest-1"
41+ run_script : " ci/build_docs.sh"
42+ sha : ${{ inputs.sha }}
Original file line number Diff line number Diff line change 1+ ame : pr
2+
3+ on :
4+ push :
5+ branches :
6+ - " pull-request/[0-9]+"
7+
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.ref }}
10+ cancel-in-progress : true
11+
12+ jobs :
You can’t perform that action at this time.
0 commit comments