This commit is contained in:
2024-11-12 23:50:31 +01:00
parent 19c2649655
commit 1bc4f3bd89
3 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
name: Move closed issues to Done
on:
issues:
types: [ closed ]
jobs:
move-issue-to-repository-project-column:
name: Move issues to repository project column
runs-on: ubuntu-latest
steps:
- name: Move issue to 'To do' column if body has a mark 'issue:todo'
uses: fojia/action-move-issues-to-column@master
with:
project: 'Actions Project'
column: 'Done'
owner: 'gymkhana'
repo: 'gymkhana'
type: 'repo'
github_token: ${{ secrets.GITEA_TOKEN }}
marker: 'issue:done'