diff --git a/.github/workflows/issue_states.yml b/.github/workflows/issue_states.yml new file mode 100644 index 0000000..73ba204 --- /dev/null +++ b/.github/workflows/issue_states.yml @@ -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 \ No newline at end of file