From 5de26d64b0c7dcacdb82212573e0d0dbaa58af1b Mon Sep 17 00:00:00 2001 From: Luca Della Vedova Date: Mon, 16 Jun 2025 12:54:02 +0800 Subject: [PATCH] Add triage github action Signed-off-by: Luca Della Vedova --- .github/workflows/triage.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/triage.yml diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml new file mode 100644 index 0000000..2ff18d8 --- /dev/null +++ b/.github/workflows/triage.yml @@ -0,0 +1,16 @@ +on: + issues: + types: [opened] + pull_request_target: + types: [opened] +name: Ticket opened +jobs: + assign: + name: Add ticket to inbox + runs-on: ubuntu-latest + steps: + - name: Add ticket to inbox + uses: actions/add-to-project@v1.0.2 + with: + project-url: https://github.com/orgs/open-rmf/projects/10 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}