-
Notifications
You must be signed in to change notification settings - Fork 496
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
Add Github Action to label issues and PRs #118
Conversation
+1 . I can't really 'review' cuz I barely follow the code but I agree with the strategy. |
On request from @samccann, I updated this to also add |
Disregard. See #118 (comment). |
Force pushed to remove an unused TypeVar. |
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.
can't comment on code but approach lgtm.
Explaining the triage label: |
* Add Github Action to label issues and PRs (#118) * labeler: welcome new contributors Fixes: #69 * labeler: improve logging * labeler: add --authed-dry-run flag Some data such as author_association is only available to authenticated API users. This helps with testing. * ci labeler: fix `Print event information` step (#166) * labeler: fix log() type annotations (#165) print() coerces any object to a str.
* Add Github Action to label issues and PRs (#118) * labeler: welcome new contributors Fixes: #69 * labeler: improve logging * labeler: add --authed-dry-run flag Some data such as author_association is only available to authenticated API users. This helps with testing. * ci labeler: fix `Print event information` step (#166) * labeler: fix log() type annotations (#165) print() coerces any object to a str.
* Add Github Action to label issues and PRs (#118) * labeler: welcome new contributors Fixes: #69 * labeler: improve logging * labeler: add --authed-dry-run flag Some data such as author_association is only available to authenticated API users. This helps with testing. * ci labeler: fix `Print event information` step (#166) * labeler: fix log() type annotations (#165) print() coerces any object to a str.
This script adds an
sc_approval
label to all PRs that touch files owned by@ansible/steering-committee
in CODEOWNERS. It also add aneeds_triage
label to new issues and PRs.This is based on discussion with @samccann and @felixfontein in #ansible-docs earlier today.
This script is relatively simple, but we should be able to easily expand it to add other labels or do other types of triage.
Relates: #101