-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix noisy runs-on
error logging
#2102
Conversation
Move the logging back up a level to fix a minor logging issue introduced in nektos#2088 `RunContext`s for composite actions have dummy/blank `Job`s with no `runs-on`, meaning their calls to `withGithubEnv` would result in an inaccurate log message complaining that `'runs-on' key not defined in ...`
96cd6cb
to
1cd1a0e
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #2102 +/- ##
==========================================
+ Coverage 61.22% 61.64% +0.42%
==========================================
Files 46 53 +7
Lines 7141 8808 +1667
==========================================
+ Hits 4372 5430 +1058
- Misses 2462 2948 +486
- Partials 307 430 +123 ☔ View full report in Codecov by Sentry. |
@jenseng this pull request has failed checks 🛠 |
@jenseng this pull request has failed checks 🛠 |
Hmm,
weird, never saw this crash in the tests. |
Move the logging back up a level to fix a minor logging issue introduced in nektos#2088 `RunContext`s for composite actions have dummy/blank `Job`s with no `runs-on`, meaning their calls to `withGithubEnv` would result in an inaccurate log message complaining that `'runs-on' key not defined in ...` Co-authored-by: Jason Song <[email protected]> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Move the logging back up a level to fix a minor logging issue introduced in #2088
The
RunContext
for a composite action has a dummy/blankJob
with noruns-on
, meaning its calls towithGithubEnv
would result in an inaccurate log message complaining that'runs-on' key not defined in ...