We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 421e107 commit 4121458Copy full SHA for 4121458
.github/actions/https-everywhere-labeller/index.js
@@ -93,10 +93,11 @@ async function run(alexa) {
93
pull_number: prNumber
94
})
95
const fileList = response.data
96
- console.log(fileList);
97
98
if (!fileList.every(file => minimatch(file.filename, rulesetGlob))) {
99
// Don't touch PRs that modify anything except rulesets
+ console.log(file.filename);
100
+ console.log(minimatch(file.filename, rulesetGlob));
101
console.log('No ruleset files in this PR');
102
return;
103
} else {
0 commit comments