- Notifications
You must be signed in to change notification settings - Fork455
Comparing changes
Open a pull request
base repository:actions/github-script
Uh oh!
There was an error while loading.Please reload this page.
base:v6.4.0
head repository:actions/github-script
Uh oh!
There was an error while loading.Please reload this page.
compare:v6.4.1
- 10commits
- 15files changed
- 3contributors
Commits on Mar 30, 2023
Add @octokit/plugin-request-log, to produce debug output for requests
Without this plugin, the debug setting is, effectively, meaningless asnone of the existing plugins produce log output.The plugin writes the request options to octokit.log.debug, and responsetimes as *method path - status in ...ms* to octokit.log.info.
mjpieters committedMar 30, 2023
Commits on Apr 4, 2023
Merge pull request#358from mjpieters/request-log-plugin
Add @octokit/plugin-request-log, to produce debug output for requests
DanRigby authoredApr 4, 2023 Clean and spruce up the integration tests a bit
- Use test-specific step ids- Remove unused input parameters- Provide clear output on what passed or failed, including a step summary for each passed test.
mjpieters committedApr 4, 2023 The @octokit/plugin- references are not actually (directly) used by@action/github-script and so only serve to confuse about what exactversion of these is included in the action. The actual versions ofthese plugins are set by @action/github.Ignoring newlines, the dist/index.js file is exactly the same withoutlisting these dependencies in package.json.
mjpieters committedApr 4, 2023 Fix null handling, covered by integration tests
`core.getInput()` always returns a string, so testing for 'not null'is always true. This then leads to previews set to an array witha single empty string, breaking accept-header output.Updated eslint rules should help avoid this issue in future, and newintegration tests verify that the github client configuration nowreflects the intended configuration options.
mjpieters committedApr 4, 2023 Merge pull request#357from mjpieters/fix_input_handling
fix input handling
joshmgross authoredApr 4, 2023 Merge branch 'main' into clean_deps
joshmgross authoredApr 4, 2023 Merge pull request#356from mjpieters/clean_deps
Remove unused dependencies
joshmgross authoredApr 4, 2023
Commits on Apr 5, 2023
Default debug to current runner debug state
When the action 'debug' input is not set, default to the currentrunner debug state. This ensures that the Octokit client request logsare included automatically when you re-run a job with debug enabled.
mjpieters committedApr 5, 2023 Merge pull request#363from mjpieters/auto_debug
Default debug to current runner debug state
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:git diff v6.4.0...v6.4.1
Uh oh!
There was an error while loading.Please reload this page.