Skip to content

Commit

Permalink
fix: empty commit for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Forattini committed Jul 9, 2022
1 parent f29f56c commit 27aa0a9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/actions/pipeline-config-scrapper/index.js

Large diffs are not rendered by default.

27 changes: 13 additions & 14 deletions src/actions/pipeline-config-scrapper/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,27 @@ const core = require("@actions/core");
const github = require("@actions/github");
const linguist = require("linguist-js");

try {
core.info(JSON.stringify(github.context, null, 2));

core.summary.addHeading('Analized 0', 0)
core.summary.addHeading('Analized 1', 1)
core.summary.addHeading('Analized 2', 2)
core.summary.addHeading('Analized 3', 3)
core.summary.addHeading('Analized 4', 4)

core.summary.addDetails('context', JSON.stringify(github.context, null, 2))

core.summary.addCodeBlock(`
async function action () {
await core.summary
.addHeading('Analized 0', 0)
.addHeading('Analized 1', 1)
.addHeading('Analized 2', 2)
.addHeading('Analized 3', 3)
.addHeading('Analized 4', 4)
.addDetails('context', JSON.stringify(github.context, null, 2))
.addCodeBlock(`
graph event-push;
eventpush-->Analyze;
Analyze-->StaticAnalizys;
StaticAnalizys-->Test;
Test-->Release;
`,'mermaid')

core.info(JSON.stringify(github.context, null, 2));
}



try {
action()



Expand Down

0 comments on commit 27aa0a9

Please sign in to comment.