diff --git a/.github/workflows/close-issue.yml b/.github/workflows/close-issue.yml new file mode 100644 index 0000000..ff7c6ef --- /dev/null +++ b/.github/workflows/close-issue.yml @@ -0,0 +1,12 @@ +name: Update issue Status + +on: + issues: + types: [closed] + +jobs: + update_issue: + uses: specklesystems/github-actions/.github/workflows/project-add-issue.yml@main + secrets: inherit + with: + issue-id: ${{ github.event.issue.node_id }} diff --git a/.github/workflows/open-issue.yml b/.github/workflows/open-issue.yml new file mode 100644 index 0000000..27fe2b8 --- /dev/null +++ b/.github/workflows/open-issue.yml @@ -0,0 +1,12 @@ +name: Move new issues into Project + +on: + issues: + types: [opened] + +jobs: + track_issue: + uses: specklesystems/github-actions/.github/workflows/project-add-issue.yml@main + secrets: inherit + with: + issue-id: ${{ github.event.issue.node_id }} \ No newline at end of file