mirror of
https://github.com/actions/setup-python.git
synced 2025-04-24 15:32:13 +00:00
Initial commit
Signed-off-by: MrProfessionalHacker <157367675+Create-action@users.noreply.github.com>
This commit is contained in:
parent
71a50f38fb
commit
1373b3d3d1
1 changed files with 19 additions and 0 deletions
19
.github/workflows/auto-assign.yml
vendored
Normal file
19
.github/workflows/auto-assign.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
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: Create-action
|
||||||
|
numOfAssignee: 1
|
Loading…
Add table
Reference in a new issue