Skip to content

Commit

Permalink
Update to ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
FonduemangVI committed May 20, 2024
1 parent 0d3a413 commit 62e06a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/update-contributors.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ let index = 0;
let page = 1;

function fetchPage() {
axios.get(`https://api.github.com/repos/FonduemangVI/Guides/contributors?per_page=100&page=${page}`)
axios.get(`https://api.github.com/repos/TRaSH-Guides/Guides/contributors?per_page=100&page=${page}`)
.then((response) => {
if (response.data.length === 0) {
// No more contributors, write the file
contributors += '\n</div>';
contributors = indentString(contributors, '');

fs.writeFileSync('CONTRIBUTORS.md', `## Contributors\n\n<!-- readme: contributors -start -->\n${contributors}\n<!-- readme: contributors -end -->\n`);
fs.writeFileSync('CONTRIBUTORS.md', `<!-- editorconfig-checker-disable-file -->\n\n## Contributors\n\n<!-- readme: contributors -start -->\n${contributors}\n<!-- readme: contributors -end -->\n`);
return;
}

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/lint-editor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ jobs:
run: |
docker run --rm \
-v "${GITHUB_WORKSPACE}":/check \
mstruebing/editorconfig-checker \
/go/bin/editorconfig-checker --ignore 'CONTRIBUTORS.md'
mstruebing/editorconfig-checker

0 comments on commit 62e06a9

Please sign in to comment.