-
Notifications
You must be signed in to change notification settings - Fork 15
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
chore(ci): add label workflow #2003
base: main
Are you sure you want to change the base?
chore(ci): add label workflow #2003
Conversation
script: | | ||
const pr = context.payload.pull_request; | ||
if (!pr) { | ||
console.log("Could not get PR from context"); |
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.
This should probably fail and indicate an error, right? Maybe we want a label like 'UNLABELABLE' or something? But i guess without the PR there is nothing to label?
// Optional: Add logic for 'synchronize' if you uncomment it in the 'on:' section | ||
// else if (context.payload.action === 'synchronize') { ... } | ||
else { | ||
console.log(`Unhandled action type: ${context.payload.action}. No labeling action taken.`); |
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.
Maybe error log messages such as this one should step summaries or otherwise easier to access?
} else if (isExternal && hasExternalLabel) { | ||
console.log(`Author is external, but label "${externalLabel}" is already present.`); | ||
} else { | ||
console.log(`Author association "${authorAssociation}" is internal or label already present. No label added.`); |
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.
You already handle the case where the label is present above. You probably want to remove the label if it is labelled as external, but maybe just note that it is?
console.log(`Author association "${authorAssociation}" is internal or label already present. No label added.`); | |
if (hasExternalLabel) { | |
console.log(`Author association "${authorAssociation}" is internal. However, external contributor label is present.`); | |
} else { | |
console.log(`Author association "${authorAssociation}" is internal. No label added.`); | |
} |
Proposed Changes
Adding label workflow which has one job at this time and that is to label pull requests with
external-contributor
if the user opening the pull request is not a member of the org.This workflow keys off of
author_associations
from the pull request context.Best link that I could find to describe each association
In the future we can add different jobs to label issues and pull requests.
Checklist
Testing Instructions