File tree 2 files changed +12
-4
lines changed
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ concurrency:
9
9
jobs :
10
10
stubs :
11
11
# Pushes should only run on mainline branch "development"
12
+ # TODO: We can also skip this, if the latest commit's name is "Update Stub Files"
12
13
if : github.event_name == 'push' && github.repository == 'AMReX-Codes/pyamrex' && github.ref == 'refs/heads/development'
13
14
name : 🔄 Update Stub Files
14
15
secrets :
45
46
needs : [stubs]
46
47
uses : ./.github/workflows/windows.yml
47
48
49
+ codeql :
50
+ if : github.event.pull_request.draft == false
51
+ name : 🔎 CodeQL
52
+ needs : [ubuntu]
53
+ permissions :
54
+ actions : read
55
+ contents : read
56
+ security-events : write
57
+ uses : ./.github/workflows/codeql.yml
58
+
48
59
save_pr_number :
49
60
if : github.event_name != 'push'
50
61
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
1
name : 🔎 CodeQL
2
2
3
3
on :
4
- push :
5
- branches : [ "development" ]
6
- pull_request :
7
- branches : [ "development" ]
4
+ workflow_call :
8
5
schedule :
9
6
- cron : " 27 3 * * 0"
10
7
You can’t perform that action at this time.
0 commit comments