From cb296c84d36413eb60a882a1f95486db8ea9ff7a Mon Sep 17 00:00:00 2001 From: David Langley Date: Thu, 29 Feb 2024 12:12:02 +0000 Subject: [PATCH] add job to automate adding new issues to the new project --- .github/workflows/triage-incoming.yml | 13 +++++++++++++ 1 file changed, 13 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 00000000000..61356390768 --- /dev/null +++ b/.github/workflows/triage-incoming.yml @@ -0,0 +1,13 @@ +name: Move new issues into Issue triage board + +on: + issues: + types: [opened] + + 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 }}