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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
| grep '^codemods/' \
| cut -d/ -f1-3 \
| sort -u \
| sed 's|^|--filter ./|'
| sed 's|^|--filter ./| || true'

@lumirlumir lumirlumir Jun 26, 2026

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change handles PRs that do not touch codemod packages. Without this, grep '^codemods/' exits with 1 when there are no matching paths, causing the CI step to fail before it can skip tests.

)

if [ -z "$filters" ]; then
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: stale

on:
schedule:
- cron: '31 22 * * *' # Runs every day at 10:31 PM UTC

permissions:
issues: write
pull-requests: write

jobs:
stale:
uses: eslint/workflows/.github/workflows/stale.yml@main
Comment thread
lumirlumir marked this conversation as resolved.
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
Loading