Skip to content

Commit

Permalink
fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
dsoldev committed Sep 4, 2023
1 parent 20443ea commit ff9eb44
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/create_issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
script: |
const fs = require('fs');
const path = require('path');
const issueDir = './issues';
const issueDir = './issues'; // Replace with the actual directory path
const files = fs.readdirSync(issueDir).filter(file => path.extname(file) === '.md').sort();
files.forEach(file => {
Expand All @@ -48,5 +48,4 @@ jobs:
body: issueBody
};
github.issues.create(issue);
}
});

0 comments on commit ff9eb44

Please sign in to comment.