forked from ubiquity-os-marketplace/command-start-stop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: enforce collaborator-only label restriction
Adds a check to prevent non-collaborators from being assigned to issues.
- Loading branch information
1 parent
886425d
commit 413c844
Showing
2 changed files
with
23 additions
and
1 deletion.
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
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,9 @@ | ||
import { Context } from "../types"; | ||
|
||
export async function isUserCollaborator(context: Context, username: string): Promise<boolean> { | ||
const { data } = await context.octokit.rest.orgs.getMembershipForUser({ | ||
org: context.payload.repository.owner.login, | ||
username, | ||
}); | ||
return ["collaborator", "member", "admin"].includes(data.role); | ||
} |