-
Notifications
You must be signed in to change notification settings - Fork 208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Auto-label PRs based on their content [skip-ci] #681
Conversation
Is this a duplicate of #680? |
@jrhemstad @harrism I think there may be some missing labels here but can you provide feedback so we can get this in for 0.18? |
There is not enough information in the description and the changes in this PR for me to understand exactly what it does. Examples would help. |
@harrism, this PR adds some automation to label PRs when they're opened. As an example, the configuration below will automatically label any PRs that edit files in the Python:
- 'python/**' |
Co-authored-by: Mike Wendt <[email protected]>
.github/labeler.yml
Outdated
@@ -12,5 +12,8 @@ CMake: | |||
conda: | |||
- 'conda/**' | |||
|
|||
cpp: | |||
- 'cpp/**' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't currently have a cpp
folder in the rmm repo. This should be include/
unless we want to reorganize the code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or rather should include include/
, tests/
and doxygen/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree.
note we still need to make a |
@kkraus14 it will get auto-generated just without a color; just like the |
Is this ready to merge? @jolorunyomi @mike-wendt |
removing the labels from this PR to prevent it from appearing in the changelog since it was re-merged correctly (squash merged) in #691. |
This PR adds the GitHub action [PR Labeler](https://github.com/actions/labeler) to auto-label PRs based on their content. Labeling is managed with a configuration file `.github/labeler.yml` using the following [options](https://github.com/actions/labeler#usage). **Note: ** This is a duplicate of #681 that we're re-merging since it was merged incorrectly. Authors: - AJ Schmidt (@ajschmidt8) - Joseph (@jolorunyomi) Approvers: - Joseph (@jolorunyomi) URL: #691
This PR adds the GitHub action PR Labeler to auto-label PRs based on their content.
Labeling is managed with a configuration file
.github/labeler.yml
using the following options.