Skip to content

Remove Example Component Definition with Obsolete Configuration #64

Remove Example Component Definition with Obsolete Configuration

Remove Example Component Definition with Obsolete Configuration #64

Workflow file for this run

name: Triage Board Management
on:
issues:
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@5eacbbd224b7814354861b555cc18a8359e2cebe
with:
project-name: Issue Triage
column-name: Needs Triage
removeCard:
runs-on: ubuntu-latest
if: github.event.action == 'closed'
steps:
- uses: alex-page/github-project-automation-plus@1f8873e97e3c8f58161a323b7c568c1f623a1c4d
with:
project: Issue Triage
column: Done
action: delete
repo-token: ${{ secrets.COMMIT_TOKEN }}