Skip to content

Issues Project Management #5

Issues Project Management

Issues Project Management #5

name: Issues Project Management
on:
issues:
types: [opened, reopened, closed]
jobs:
mark-as-todo:
if: ${{ github.event.action == 'opened' || github.event.action == 'reopened' }}
name: Mark opened issue as Todo
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.8.3
with:
project: Issues
column: Todo
repo-token: ${{ secrets.PROJECTS_PAT }}
mark-as-done:
if: ${{ github.event.action == 'closed' }}
name: Mark closed issue as Done
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.8.3
with:
project: Issues
column: Done
repo-token: ${{ secrets.PROJECTS_PAT }}