Error while calling contract function #825
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
name: Issue autoassignment | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
assign-new-issue: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/github-script@v7 | |
with: | |
script: | | |
// each user has a chance of (p - (previousP ?? 0)) to be assigned | |
const potentialAssignees = [ | |
["kanej", 1/4], | |
["schaable", 2/4], | |
["galargh", 3/4], | |
["ChristopherDedominici", 1.0], | |
]; | |
let assignee; | |
const r = Math.random(); | |
console.log("r:", r); | |
for (const [username, p] of potentialAssignees) { | |
if (r < p) { | |
assignee = username; | |
break; | |
} | |
} | |
if (assignee === undefined) { | |
throw new Error("An assignee should've been set"); | |
} | |
console.log("assignee:", assignee); | |
console.log("Fetch issue", context.issue.number); | |
const issue = await github.rest.issues.get({ | |
owner: context.issue.owner, | |
repo: context.issue.repo, | |
issue_number: context.issue.number, | |
}); | |
console.log("Author association:", issue.data.author_association); | |
const isCollaborator = ["OWNER", "MEMBER", "COLLABORATOR"].includes( | |
issue.data.author_association | |
); | |
console.log("Is collaborator?", isCollaborator); | |
// we only assign triage issues from external users | |
if (!isCollaborator) { | |
await github.rest.issues.addAssignees({ | |
owner: context.issue.owner, | |
repo: context.issue.repo, | |
issue_number: context.issue.number, | |
assignees: [assignee], | |
}); | |
} |