Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/update-readme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: update-readme

on:
schedule:
- cron: "0 8 * * *" # Runs every day at 08:00 AM UTC

workflow_dispatch:

jobs:
update-readme:
uses: eslint/workflows/.github/workflows/update-readme.yml@main
secrets:
workflow_push_bot_token: ${{ secrets.WORKFLOW_PUSH_BOT_TOKEN }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ package-lock.json
*.code-workspace
.idea
.cursor

# Automatically generated files by GitHub Actions workflow
tools/update-readme.js
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,10 @@ module.exports = {
},
};
```

<!-- NOTE: This section is autogenerated. Do not manually edit.-->
<!--sponsorsstart-->

## Sponsors

<!--sponsorsend-->
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"lib"
],
"scripts": {
"lint": "eslint .",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "mocha tests/**/*.test.js"
},
"devDependencies": {
Expand Down
Loading