Skip to content

Commit 1e7f770

Browse files
authored
Merge pull request #1132 from github/henrymercer/one-click-debug
Enable one-click debugging via the "Enable debug logging" option when re-running Actions jobs
2 parents e1ec697 + dca60ba commit 1e7f770

17 files changed

+50
-36
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
## [UNRELEASED]
44

5-
No user facing changes.
5+
- You can now quickly debug a job that uses the CodeQL Action by re-running the job from the GitHub UI and selecting the "Enable debug logging" option. [#1132](https://github.com/github/codeql-action/pull/1132)
6+
- You can now see diagnostic messages produced by the analysis in the logs of the `analyze` Action by enabling debug mode. To enable debug mode, pass `debug: true` to the `init` Action, or [enable step debug logging](https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging#enabling-step-debug-logging). This feature is available for CodeQL CLI version 2.10.0 and later. [#1133](https://github.com/github/codeql-action/pull/1133)
67

78
## 2.1.15 - 28 Jun 2022
89

init/action.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ inputs:
5656
This input also sets the number of threads that can later be used by the "analyze" action.
5757
required: false
5858
debug:
59-
description: Enable debugging mode. This will result in more output being produced which may be useful when debugging certain issues.
59+
description: >-
60+
Enable debugging mode.
61+
This will result in more output being produced which may be useful when debugging certain issues.
62+
Debugging mode is enabled automatically when step debug logging is turned on.
6063
required: false
6164
default: 'false'
6265
debug-artifact-name:

lib/analyze-action.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze-action.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze.js

+6-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/codeql.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/codeql.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/codeql.test.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)