Merge pull request #237 from The-Art-of-Hacking/santosomar-patch-13

Create assign_pr.yml
This commit is contained in:
Omar Santos 2024-11-27 01:05:06 -05:00 committed by GitHub
commit d830873edf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

23
.github/workflows/assign_pr.yml vendored Normal file
View File

@ -0,0 +1,23 @@
# This workflow automatically assigns all new pull requests to the user "santosomar".
#
# To modify the assignee, update the `assignees` parameter below.
name: Auto-assign pull requests
on:
pull_request:
types: [opened]
jobs:
auto-assign:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Assign pull request
uses: actions-ecosystem/action-add-assignees@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
assignees: 'santosomar'