mirror of
https://github.com/ijaric/voice_assistant.git
synced 2025-05-24 14:33:26 +00:00
13 lines
309 B
YAML
13 lines
309 B
YAML
name: Assign PR Author
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
assign-pr-author:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: samspills/assign-pr-to-author@v1.0
|
|
if: github.event_name == 'pull_request' && github.event.action == 'opened'
|
|
with:
|
|
repo-token: "${{ secrets.PR_GITHUB_TOKEN }}"
|