Skip to content

Commit

Permalink
fix: Next try nr2
Browse files Browse the repository at this point in the history
  • Loading branch information
samtrion committed Dec 21, 2023
1 parent 5ec34cd commit 1060d09
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion badges/coverage.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 7 additions & 4 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ const { logInfo, logDebug, logWarning } = require('./log')
*/
module.exports = async function run({ github, context, inputs, metadata }) {
try {
logInfo(github)
logInfo(context)
logInfo(inputs)
logInfo(metadata)
logInfo(JSON.stringify(github))
logInfo(JSON.stringify(context))
logInfo(JSON.stringify(inputs))

if (metadata !== undefined) {
logInfo(JSON.stringify(metadata))
}

// init octokit
const octokit = github.getOctokit(inputs.token)
Expand Down

0 comments on commit 1060d09

Please sign in to comment.