Skip to content

Commit beeba2d

Browse files
committed
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 <[email protected]>
1 parent 67d914f commit beeba2d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/cleanup-caches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Cleanup caches on closed PRs
22
# From https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/caching-dependencies-to-speed-up-workflows#matching-a-cache-key
33
on:
4-
pull_request:
4+
pull_request_target:
55
types: [ closed ]
66
jobs:
77
cleanup:

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ if(DEFINED TRIBITS_PACKAGE)
33
return()
44
endif()
55

6+
67
# This is the top level CMake file for the SCOREC build
78
cmake_minimum_required(VERSION 3.12)
89

0 commit comments

Comments
 (0)