From beeba2dfa5dfe22ab477561bd39b56b8977810fa Mon Sep 17 00:00:00 2001 From: Aiden Woodruff Date: Fri, 4 Jul 2025 00:00:34 -0400 Subject: [PATCH 1/2] ci: change cleanup-caches trigger type - .github/workflows/cleanup-caches.yml: change trigger type to pull_request_target which should provide a read-write token. - meaningless change to CMakeLists.txt to activate cmake CI Signed-off-by: Aiden Woodruff --- .github/workflows/cleanup-caches.yml | 2 +- CMakeLists.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cleanup-caches.yml b/.github/workflows/cleanup-caches.yml index c268da8e6..5369f10ec 100644 --- a/.github/workflows/cleanup-caches.yml +++ b/.github/workflows/cleanup-caches.yml @@ -1,7 +1,7 @@ name: Cleanup caches on closed PRs # From https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/caching-dependencies-to-speed-up-workflows#matching-a-cache-key on: - pull_request: + pull_request_target: types: [ closed ] jobs: cleanup: diff --git a/CMakeLists.txt b/CMakeLists.txt index 621afc77b..70996467c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,6 +3,7 @@ if(DEFINED TRIBITS_PACKAGE) return() endif() + # This is the top level CMake file for the SCOREC build cmake_minimum_required(VERSION 3.12) From 42e40e63a8b22a445f4eeaef8624f7f85c270723 Mon Sep 17 00:00:00 2001 From: Aiden Woodruff Date: Fri, 4 Jul 2025 00:23:25 -0400 Subject: [PATCH 2/2] restore bogus CMakeLists.txt change Signed-off-by: Aiden Woodruff --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 70996467c..621afc77b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,6 @@ if(DEFINED TRIBITS_PACKAGE) return() endif() - # This is the top level CMake file for the SCOREC build cmake_minimum_required(VERSION 3.12)