From bf4c866934042971878f1aa37b05615a9f2df3c3 Mon Sep 17 00:00:00 2001 From: David Langley Date: Thu, 29 Feb 2024 12:17:03 +0000 Subject: [PATCH] add job to automate adding new issues to the new project --- .github/workflows/triage-incoming.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/triage-incoming.yml diff --git a/.github/workflows/triage-incoming.yml b/.github/workflows/triage-incoming.yml new file mode 100644 index 0000000..2535fbf --- /dev/null +++ b/.github/workflows/triage-incoming.yml @@ -0,0 +1,14 @@ +name: Move new issues into Issue triage board + +on: + issues: + types: [opened] + +jobs: + automate-project-columns-next: + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@main + with: + project-url: https://github.com/orgs/element-hq/projects/120 + github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}