mirror of
https://github.com/The-Art-of-Hacking/h4cker.git
synced 2024-12-18 10:56:09 +00:00
Create assign_pr.yml
This commit is contained in:
parent
3c4b3d6128
commit
673dc856a7
23
.github/workflows/assign_pr.yml
vendored
Normal file
23
.github/workflows/assign_pr.yml
vendored
Normal 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'
|
Loading…
Reference in New Issue
Block a user