Skip to content

Instantly share code, notes, and snippets.

@andostronaut
Created July 27, 2023 16:10
Show Gist options
  • Save andostronaut/0c5c6d13a293968c571dfc2eec1af7fb to your computer and use it in GitHub Desktop.
Save andostronaut/0c5c6d13a293968c571dfc2eec1af7fb to your computer and use it in GitHub Desktop.
GitHub Workflow : Auto Assign
name: Auto Assign
on:
issues:
types: [opened]
pull_request:
types: [opened]
jobs:
run:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: 'Auto-assign issue'
uses: pozil/auto-assign-issue@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
assignees: iamando
numOfAssignee: 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment