Skip to content

Revise branching and forking in contributions and versioning markdown. #372

Revise branching and forking in contributions and versioning markdown.

Revise branching and forking in contributions and versioning markdown. #372

Workflow file for this run

name: Triage Board Management
on:
issues:
types:
- opened
- closed
jobs:
createCard:
runs-on: ubuntu-20.04
if: github.event.action == 'opened'
steps:
- name: Add New Issues to Issue Triage Board
uses: peter-evans/create-or-update-project-card@866533e2ae61f13c35fd1d374049713fab43c729
with:
project-name: Issue Triage
column-name: Needs Triage
removeCard:
runs-on: ubuntu-20.04
if: github.event.action == 'closed'
steps:
- uses: alex-page/github-project-automation-plus@bb266ff4dde9242060e2d5418e120a133586d488
with:
project: Issue Triage
column: Done
action: delete
repo-token: ${{ secrets.COMMIT_TOKEN }}