Skip to content

Commit

Permalink
Add auto assign workflow for issues and PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
wipawel committed Aug 24, 2020
1 parent 7ed1dec commit 1ba70d0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Auto Assign

on:
issues:
types: [opened, labeled]
pull_request:
types: [opened, labeled]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
auto_assign:
runs-on: ubuntu-latest
name: Assign to Project
steps:
- name: Assign NEW issues and PRs to project 1
uses: srggrs/[email protected]
if: github.event.action == 'opened'
with:
project: 'https://github.com/awslabs/ktf/projects/1'

0 comments on commit 1ba70d0

Please sign in to comment.