From 9e1efd04ccb99222e102245aad41a08c66f5f49c Mon Sep 17 00:00:00 2001 From: Joseph Macaranas <145489236+amd-jmacaran@users.noreply.github.com> Date: Wed, 30 Apr 2025 18:46:41 -0400 Subject: [PATCH 1/3] Testing auto-label job post folder reorg --- shared/rocroller/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/rocroller/CMakeLists.txt b/shared/rocroller/CMakeLists.txt index a1bea878ca6..c8a307f7adf 100644 --- a/shared/rocroller/CMakeLists.txt +++ b/shared/rocroller/CMakeLists.txt @@ -3,7 +3,7 @@ # # MIT License # -# Copyright 2024-2025 AMD ROCm(TM) Software +# Copyright AMD ROCm(TM) Software # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal From e78b3194562fe6f2cc54dd71b7251894e3affb7d Mon Sep 17 00:00:00 2001 From: amd-jmacaran Date: Wed, 30 Apr 2025 18:58:11 -0400 Subject: [PATCH 2/3] Change grep logic in auto-labeler after local testing --- .github/workflows/pr-auto-label.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-auto-label.yml b/.github/workflows/pr-auto-label.yml index cd8d71cd702..ec7e7225a7f 100644 --- a/.github/workflows/pr-auto-label.yml +++ b/.github/workflows/pr-auto-label.yml @@ -61,7 +61,7 @@ jobs: label="${category}: ${name}" # e.g., "projects: hipsparse" # Use full path with leading slash for exact match - if echo "$changed_files" | grep -qE "\b/${category_repo}/"; then + if echo "$changed_files" | grep -qE "\^${category_repo}/"; then labels_to_add+=("$label") else if echo "$current_labels" | grep -q "$label"; then From 94ea40ac2fd3310ff5d288c2b529a1d8905a9a43 Mon Sep 17 00:00:00 2001 From: Joseph Macaranas <145489236+amd-jmacaran@users.noreply.github.com> Date: Wed, 30 Apr 2025 19:11:23 -0400 Subject: [PATCH 3/3] Testing autolabel with another change --- projects/rocthrust/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/rocthrust/CMakeLists.txt b/projects/rocthrust/CMakeLists.txt index 3a47990f73f..a77d2a175f2 100644 --- a/projects/rocthrust/CMakeLists.txt +++ b/projects/rocthrust/CMakeLists.txt @@ -1,5 +1,5 @@ # ######################################################################## -# Copyright 2019-2025 Advanced Micro Devices, Inc. +# Copyright Advanced Micro Devices, Inc. # ######################################################################## cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)