Skip to content

Commit 9229cb2

Browse files
committed
fix: use correct path for problem-matcher.json
1 parent 0529969 commit 9229cb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const { issueCommand } = require('@actions/core/lib/command');
77
async function run(){
88
try{
99
const action = getInput("action");
10-
const matcherFile = path.join(__dirname, ".github", "problem-matcher.json");
10+
const matcherFile = path.join(__dirname, "../", ".github", "problem-matcher.json");
1111
switch(action){
1212
case "add":
1313
issueCommand("add-matcher", {}, matcherFile);

0 commit comments

Comments
 (0)