Skip to content

Commit

Permalink
Remove closed issues from triage board for #1302.
Browse files Browse the repository at this point in the history
  • Loading branch information
aj-stein-nist committed Jun 8, 2022
1 parent dc22201 commit 779c7ac
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/issue-triage.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
name: Triage Board Management

on:
issues:
types: [opened]
types:
- opened
- closed
jobs:
createCard:
runs-on: ubuntu-latest
if: github.event.action == 'opened'
steps:
- name: Add New Issues to Issue Triage Board
uses: peter-evans/create-or-update-project-card@866533e2ae61f13c35fd1d374049713fab43c729 # current tag: v2
with:
project-name: Issue Triage
column-name: Needs Triage
project-name: Triage Test Board
column-name: To do
removeCard:
runs-on: ubuntu-latest
if: github.event.action == 'closed'
steps:
- uses: alex-page/github-project-automation-plus@bb266ff4dde9242060e2d5418e120a133586d488 #current tag: v0.8.1
with:
project: Triage Test Board
column: Done
action: delete
repo-token: ${{ secrets.REMOVE_PROJECT_TOKEN }}

0 comments on commit 779c7ac

Please sign in to comment.