mirror of
https://github.com/actions/cache.git
synced 2024-11-10 06:31:07 +07:00
Update issue-opened-workflow.yml
This commit is contained in:
parent
0c45773b62
commit
08b64bd5bd
17
.github/workflows/issue-opened-workflow.yml
vendored
17
.github/workflows/issue-opened-workflow.yml
vendored
@ -1,4 +1,19 @@
|
||||
name: Assign issue
|
||||
name: name: Assign issue
|
||||
on:
|
||||
issues:
|
||||
types: [opened]
|
||||
jobs:
|
||||
run-action:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Get current oncall
|
||||
id: oncall
|
||||
run: |
|
||||
echo "CURRENT=$(curl --request GET 'https://api.pagerduty.com/oncalls?include[]=users&schedule_ids[]=P5VG2BX&earliest=true' --header 'Authorization: Token token=${{ secrets.PAGERDUTY_TOKEN }}' --header 'Accept: application/vnd.pagerduty+json;version=2' --header 'Content-Type: application/json' | jq -r '.oncalls[].user.name')" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: add_assignees
|
||||
run: |
|
||||
curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{github.repository}}/issues/${{ github.event.issue.number}}/assignees -d '{"assignees":["${{steps.oncall.outputs.CURRENT}}"]}'
|
||||
on:
|
||||
issues:
|
||||
types: [opened]
|
||||
|
Loading…
Reference in New Issue
Block a user