Skip to content

Commit

Permalink
#0 | Add workflow to close issues that are moved to Done lane
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayvenu committed Jun 27, 2023
1 parent feb86a4 commit 8d44633
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/issue_states.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: 'Close cards moved to Done Lane'

on:
project_card:
types: [created, edited, moved]

permissions:
repository-projects: read
issues: write
pull-requests: write

jobs:
action:
runs-on: ubuntu-latest
steps:
- uses: dessant/issue-states@v3
with:
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
open-issue-columns: ''
closed-issue-columns: 'Done'
log-output: false

0 comments on commit 8d44633

Please sign in to comment.