PagerDuty issue test #669
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 Opened Triage | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
issue_triage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
- uses: github/issue-labeler@c1b0f9f52a63158c4adc09425e858e87b32e9685 # v3.4 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: .github/labeler-issue-triage.yml | |
enable-versioned-regex: 0 | |
oncall_review_assigner: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v4 | |
- run: npm install @pagerduty/pdjs | |
- uses: actions/github-script@e69ef5462fd455e02edcaf4dd7708eda96b9eda0 # v7.0.0 | |
env: | |
PAGERDUTY_TOKEN: ${{ secrets.PAGERDUTY_TOKEN }} | |
with: | |
script: | | |
const { PAGERDUTY_TOKEN } = process.env | |
const { api } = require('@pagerduty/pdjs'); | |
const pd = api({token: PAGERDUTY_TOKEN}); | |
let reviewer = "" | |
const reviewerList = new Map([ | |
["Sheneska Williams", "sheneska"], | |
["Mauricio Alvarez Leon", "BBBmau"], | |
["Alex Somesan", "alexsomesan"], | |
["Alex Pilon", "appilon"], | |
["John Houston", "jrhouston"], | |
["Aleksandr Rybolovlev", "arybolovlev"], | |
]); | |
pd.get('oncalls?escalation_policy_ids%5B%5D=PH8IF3M') | |
.then(({data}) => { | |
reviewer = reviewerList.get(data.oncalls[0].user.summary) | |
console.log("Assigning issue to " + reviewer); | |
}).catch(console.error) | |
try{ | |
await github.rest.issues.addAssignees({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
assignees: reviewer, | |
issue_number: context.issue.number, | |
}) | |
} catch(error){ | |
core.setFailed("error assigning reviewer: " + error) | |
} |