Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
added workflows to triage new issues and pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
apanicker-nflx committed Dec 9, 2020
1 parent 4bbfa2b commit 9e1bd5a
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/issues_triage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Move new issues into Triage

on:
issues:
types: [opened, reopened]

jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.3.0
with:
project: Backlog
column: Triage
repo-token: ${{ secrets.PROJECT_MANAGEMENT_TOKEN }}
15 changes: 15 additions & 0 deletions .github/workflows/pull_request_triage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Move assigned pull requests into To do

on:
pull_request:
types: [ opened, reopened ]

jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.3.0
with:
project: Backlog
column: To do
repo-token: ${{ secrets.PROJECT_MANAGEMENT_TOKEN }}

0 comments on commit 9e1bd5a

Please sign in to comment.