From df5ad1dfa5952df835704326aa1ab0527cbfd2e5 Mon Sep 17 00:00:00 2001 From: YanxuanLiu Date: Fri, 14 Aug 2026 14:07:59 +0800 Subject: [PATCH 1/2] Run Roadmap automation when pull requests merge Signed-off-by: YanxuanLiu --- .github/workflows/add-to-project.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml index a0998ecd28..ff2559c97d 100644 --- a/.github/workflows/add-to-project.yml +++ b/.github/workflows/add-to-project.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2022-2025, NVIDIA CORPORATION. +# Copyright (c) 2022-2026, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -21,13 +21,16 @@ on: pull_request_target: types: - opened + - closed jobs: Add-to-project: - if: github.repository_owner == 'NVIDIA' # avoid adding issues from forks + if: >- + github.repository_owner == 'NVIDIA' && + (github.event.action == 'opened' || github.event.pull_request.merged == true) runs-on: ubuntu-latest steps: - name: add-to-project - uses: NVIDIA/spark-rapids-common/add-to-project@main + uses: NVIDIA/spark-rapids-common/add-to-project@auto-roadmap-from-pom with: token: ${{ secrets.PROJECT_TOKEN }} From d01e66ca5bf5f4c379ec596068a2484b1ce140ef Mon Sep 17 00:00:00 2001 From: YanxuanLiu Date: Fri, 14 Aug 2026 15:41:15 +0800 Subject: [PATCH 2/2] Use main add-to-project action Signed-off-by: YanxuanLiu --- .github/workflows/add-to-project.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml index ff2559c97d..e5272693dc 100644 --- a/.github/workflows/add-to-project.yml +++ b/.github/workflows/add-to-project.yml @@ -31,6 +31,6 @@ jobs: runs-on: ubuntu-latest steps: - name: add-to-project - uses: NVIDIA/spark-rapids-common/add-to-project@auto-roadmap-from-pom + uses: NVIDIA/spark-rapids-common/add-to-project@main with: token: ${{ secrets.PROJECT_TOKEN }}