-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'branch-0.19' into fea-019-slhc_prims
- Loading branch information
Showing
6 changed files
with
166 additions
and
22 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 @@ | ||
# https://github.com/actions/labeler#common-examples | ||
# Adapted from https://github.com/rapidsai/raft/blob/main/.github/CODEOWNERS | ||
# Labels culled from https://github.com/rapidsai/raft/labels | ||
|
||
python: | ||
- 'python/**' | ||
|
||
cpp: | ||
- 'cpp/**' | ||
|
||
CMake: | ||
- '**/CMakeLists.txt' | ||
- '**/cmake/**' | ||
|
||
gpuCI: | ||
- 'ci/**' |
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,11 @@ | ||
name: "Pull Request Labeler" | ||
on: | ||
- pull_request_target | ||
|
||
jobs: | ||
triage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@main | ||
with: | ||
repo-token: "${{ secrets.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,57 @@ | ||
name: Mark inactive issues and pull requests | ||
|
||
on: | ||
schedule: | ||
- cron: "0 * * * *" | ||
|
||
jobs: | ||
mark-inactive-30d: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Mark 30 day inactive issues and pull requests | ||
uses: actions/stale@v3 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: > | ||
This issue has been labeled `inactive-30d` due to no recent activity in the past 30 days. | ||
Please close this issue if no further response or action is needed. | ||
Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. | ||
This issue will be labeled `inactive-90d` if there is no activity in the next 60 days. | ||
stale-issue-label: "inactive-30d" | ||
exempt-issue-labels: "0 - Blocked,0 - Backlog,good first issue" | ||
days-before-issue-stale: 30 | ||
days-before-issue-close: -1 | ||
stale-pr-message: > | ||
This PR has been labeled `inactive-30d` due to no recent activity in the past 30 days. | ||
Please close this PR if it is no longer required. | ||
Otherwise, please respond with a comment indicating any updates. | ||
This PR will be labeled `inactive-90d` if there is no activity in the next 60 days. | ||
stale-pr-label: "inactive-30d" | ||
exempt-pr-labels: "0 - Blocked,0 - Backlog,good first issue" | ||
days-before-pr-stale: 30 | ||
days-before-pr-close: -1 | ||
operations-per-run: 50 | ||
mark-inactive-90d: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Mark 90 day inactive issues and pull requests | ||
uses: actions/stale@v3 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: > | ||
This issue has been labeled `inactive-90d` due to no recent activity in the past 90 days. | ||
Please close this issue if no further response or action is needed. | ||
Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. | ||
stale-issue-label: "inactive-90d" | ||
exempt-issue-labels: "0 - Blocked,0 - Backlog,good first issue" | ||
days-before-issue-stale: 90 | ||
days-before-issue-close: -1 | ||
stale-pr-message: > | ||
This PR has been labeled `inactive-90d` due to no recent activity in the past 90 days. | ||
Please close this PR if it is no longer required. | ||
Otherwise, please respond with a comment indicating any updates. | ||
stale-pr-label: "inactive-90d" | ||
exempt-pr-labels: "0 - Blocked,0 - Backlog,good first issue" | ||
days-before-pr-stale: 90 | ||
days-before-pr-close: -1 | ||
operations-per-run: 50 |
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