Skip to content

test

test #1339

Workflow file for this run

---
name: Assign PR
on:
pull_request_target:
types: [opened, ready_for_review, unassigned]
permissions:
contents: read
pull-requests: write
jobs:
assign-reviewers:
runs-on: ubuntu-latest
steps:
- name: Assign reviewers using shared action
uses: seanconroy2021/release-service-automations/pr-assigner@auto-pr
with:
event-type: ${{ github.event.action }}
pr-number: ${{ github.event.pull_request.number }}
removed-assignee: ${{ github.event.action == 'unassigned' && github.event.assignee.login || '' }}
github-token: ${{ secrets.PR_ASSIGNER_PAT_TOKEN }}
slack-webhook: ${{ secrets.PR_ASSIGNER_SLACK_WEBHOOK }}
pto-calendar-url: ${{ secrets.PTO_CALENDAR_URL }}