From 9a5bafb712e4171bb8bd9611b8102c7a66f9c685 Mon Sep 17 00:00:00 2001 From: Mike Goldsmith Date: Tue, 10 Mar 2026 14:43:20 +0000 Subject: [PATCH] add add-to-project workflow Adds the missing `add-to-project-v2.yml` workflow to ensure new issues and PRs are automatically added to the OTel team's GitHub project board. Fixes OTEL-125 --- .github/workflows/add-to-project-v2.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/add-to-project-v2.yml diff --git a/.github/workflows/add-to-project-v2.yml b/.github/workflows/add-to-project-v2.yml new file mode 100644 index 0000000..17839bd --- /dev/null +++ b/.github/workflows/add-to-project-v2.yml @@ -0,0 +1,15 @@ +name: Add to project +on: + issues: + types: [opened] + pull_request_target: + types: [opened] +jobs: + add-to-project: + runs-on: ubuntu-latest + name: Add issues and PRs to project + steps: + - uses: actions/add-to-project@main + with: + project-url: https://github.com/orgs/honeycombio/projects/27 + github-token: ${{ secrets.GHPROJECTS_TOKEN }}