Skip to content

Commit

Permalink
Merge pull request #237 from The-Art-of-Hacking/santosomar-patch-13
Browse files Browse the repository at this point in the history
Create assign_pr.yml
  • Loading branch information
santosomar authored Nov 27, 2024
2 parents 3c4b3d6 + 88af80b commit d830873
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/assign_pr.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit d830873

Please sign in to comment.