You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/reusable.yml
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ name: Boost.CI
15
15
16
16
permissions:
17
17
contents: read
18
-
18
+
19
19
on:
20
20
workflow_call:
21
21
inputs:
@@ -65,7 +65,7 @@ on:
65
65
type: boolean
66
66
default: true
67
67
enable_pr_coverage:
68
-
description: "When enabled, coverage will be collected even without a $CODECOV_TOKEN, e.g for PRs where it usually is not available. Enabled by default."
68
+
description: "When enabled, coverage will be collected even without a $CODECOV_TOKEN in PRs, where it usually is not available. Enabled by default."
69
69
required: false
70
70
type: boolean
71
71
default: true
@@ -220,6 +220,7 @@ jobs:
220
220
name: Generate job matrices
221
221
run: |
222
222
import json, math, os, sys, re
223
+
print(f"{os.environ['GITHUB_EVENT_NAME']} build from {os.environ['GITHUB_ACTOR']} on {os.environ['GITHUB_REF_NAME']} ({os.environ['GITHUB_SHA']})")
0 commit comments