From 47269c506c50ca92a02ccd3b19f1f214f7f81689 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 3 May 2022 03:02:31 +0200 Subject: [PATCH] dev: auto-add issues to project board With this we can slowly transition away from the unhelpful deluge of Github status labels. Ref: https://github.com/orgs/doomemacs/projects/2/views/1 --- .github/workflows/add-to-project.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/add-to-project.yml diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 000000000..5806ea095 --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,17 @@ +name: Add issues to project + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@main + with: + project-url: https://github.com/orgs/doomemacs/projects/2 + github-token: ${{ github.token }} + labeled: needs-triage