-
-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: 🎡 add stale issues workflow + actionlint (#802)
- Loading branch information
1 parent
4403694
commit 735335a
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: reviewdog | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/**/*.yml' | ||
|
||
jobs: | ||
actionlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: reviewdog/action-actionlint@v1 | ||
with: | ||
fail_on_error: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Mark stale issues | ||
on: | ||
schedule: | ||
- cron: '30 1 * * *' # Runs daily at 01:30 UTC | ||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
stale-issue-message: 'This issue is missing information/reproduction for 3 weeks with no activity. Please provide the required information/reproduction or this issue will be closed in 7 days.' | ||
days-before-stale: 21 | ||
only-labels: 'Missing reproduction,Missing information' | ||
days-before-pr-stale: -1 # Exclude PRs | ||
days-before-pr-close: -1 # Exclude PRs |