TriagerX for closed Issue #234
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: Triager on Closed issues | |
run-name: TriagerX for closed Issue | |
on: | |
issues: | |
types: [closed] | |
jobs: | |
issue_closed: | |
name: Issue Closed | |
runs-on: ubuntu-latest | |
steps: | |
- name: Commenting on the issue | |
uses: actions/github-script@v4 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const { data: issueData } = await github.issues.get({ | |
issue_number: context.payload.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo | |
}); | |
const commentsUrl = issueData.comments_url; | |
const { data: commentsData } = await github.request(commentsUrl); | |
const sandboxOwner = context.repo.owner; | |
const sandboxRepo = context.repo.repo; | |
const actualLabels = issueData.labels.map(label => label['name']); | |
let resultString = `Issue Number: ${context.issue.number}\n`; | |
resultString += 'Status: Closed\n'; | |
if (actualLabels.length > 0) { | |
resultString += `Actual Components: ${actualLabels.join(', ')}\n`; | |
} else { | |
resultString += `Actual Components: None :(\n`; | |
} | |
// Check if there is a closed/merged pull request associated with the issue | |
// Check if the pull request has been merged | |
let actualAssignees = []; | |
const timeline = await github.issues.listEventsForTimeline({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
}); | |
let prAssignees = []; | |
timeline.data.forEach(event => { | |
if (event.event === 'cross-referenced' && event.source && event.source.issue.pull_request) { | |
const pr = event.source.issue; | |
if (pr.state === 'closed' || pr.merged === true) { | |
prAssignees.push(pr.user.login); | |
} | |
} | |
}); | |
if (issueData.assignees.length != 0) { | |
const assignees = issueData.assignees.map(assignee => assignee.login); | |
actualAssignees.concat(assignees); | |
} | |
if (actualAssignees.length > 0) { | |
resultString += `Actual Assignees: ${actualAssignees.join(', ')}\n`; | |
} else { | |
resultString += `Actual Assignees: No one :(\n`; | |
} | |
if (prAssignees.length > 0) { | |
let prUniqueAssignees = [...new Set(prAssignees)]; | |
resultString += `PR Assignees: ${prUniqueAssignees.join(', ')}`; | |
} else { | |
resultString += `PR Assignees: No one :(`; | |
} | |
await github.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: sandboxOwner, | |
repo: sandboxRepo, | |
body: resultString, | |
body: resultString, | |
}); |