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 10, 2022
1 parent f861669 commit 6ef0298
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/pipeline-config-scrapper/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .github/actions/pipeline-config-scrapper/index.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/actions/pipeline-config-scrapper/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ async function action() {
)
.write();

const analysis = {};

const languages = linguist(path.join(process.cwd(), ".."), {
categories: ["programming"],
ignoredLanguages: ["Shell", "Dockerfile"],
Expand All @@ -27,7 +29,6 @@ async function action() {
followSymbolicLinks: false,
});
const files = await globber.glob();
const analysis = {};

core.info(JSON.stringify(languages, null, 2));
core.setOutput("actor", github.context.actor);
Expand Down

0 comments on commit 6ef0298

Please sign in to comment.