Update intro_to_nuclei.md #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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' |