Skip to content
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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

strantalis
Copy link
Member

@strantalis strantalis commented Mar 25, 2025

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

  • I have added or updated unit tests
  • I have added or updated integration tests (if appropriate)
  • I have added or updated documentation

Testing Instructions

@strantalis strantalis requested review from a team as code owners March 25, 2025 20:53
script: |
const pr = context.payload.pull_request;
if (!pr) {
console.log("Could not get PR from context");
Copy link
Member

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.`);
Copy link
Member

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.`);
Copy link
Member

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?

Suggested change
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.`);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants