From 9dbd3b22227f25d6f9fc6e5a5805c2a1d46090bb Mon Sep 17 00:00:00 2001 From: fabidick22 Date: Thu, 7 Jul 2022 17:01:04 -0500 Subject: [PATCH 1/3] docs: Add branding info --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index f50dc1d..003d510 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,8 @@ name: 'Detect PR changes' description: 'Action to get paths and files changed in a Pull Request event and use these for GitHub Actions matrix' +branding: + icon: bar-chart + color: white inputs: path: description: 'Path' From d4456abfe35265aab9a78de3a7b9ce184c5219ea Mon Sep 17 00:00:00 2001 From: fabidick22 Date: Thu, 7 Jul 2022 17:02:04 -0500 Subject: [PATCH 2/3] bug: Update undifined variable --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 43b33ab..651b3a2 100644 --- a/index.js +++ b/index.js @@ -34,7 +34,7 @@ const main = async () => { if (filteredFiles.length === 0) { console.log("No matchs found.") - console.log(`Raw input: ${directory}`) + console.log(`Raw input: ${path}`) console.log(`Regex: ${regExp.toString()}`) } await setOutputs(filteredFiles); From a509adb8a6ca2a002873bdc3f569ac893c8f7318 Mon Sep 17 00:00:00 2001 From: fabidick22 Date: Thu, 7 Jul 2022 17:03:11 -0500 Subject: [PATCH 3/3] build: Build app - ncc --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 3f327f0..35eb4f3 100644 --- a/dist/index.js +++ b/dist/index.js @@ -8896,7 +8896,7 @@ const main = async () => { if (filteredFiles.length === 0) { console.log("No matchs found.") - console.log(`Raw input: ${directory}`) + console.log(`Raw input: ${path}`) console.log(`Regex: ${regExp.toString()}`) } await setOutputs(filteredFiles);