h4cker/.github/workflows/assign_pr.yml

24 lines
514 B
YAML
Raw Permalink Normal View History

2024-11-27 06:02:00 +00:00
# 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:
2024-11-27 06:03:45 +00:00
github_token: ${{ secrets.GITHUB_TOKEN }}
2024-11-27 06:02:00 +00:00
assignees: 'santosomar'