Create main.yml
Browse files- .github/workflows/main.yml +25 -0
.github/workflows/main.yml
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: Mark Stale Issues and Pull Requests
|
| 2 |
+
|
| 3 |
+
on:
|
| 4 |
+
schedule:
|
| 5 |
+
- cron: '0 2 * * *' # Runs daily at 2:00 AM UTC
|
| 6 |
+
workflow_dispatch: # Allows manual triggering of the workflow
|
| 7 |
+
|
| 8 |
+
jobs:
|
| 9 |
+
stale:
|
| 10 |
+
runs-on: ubuntu-latest
|
| 11 |
+
|
| 12 |
+
steps:
|
| 13 |
+
- name: Mark stale issues and pull requests
|
| 14 |
+
uses: actions/stale@v8
|
| 15 |
+
with:
|
| 16 |
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
| 17 |
+
stale-issue-message: "This issue has been marked as stale due to inactivity. If no further activity occurs, it will be closed in 7 days."
|
| 18 |
+
stale-pr-message: "This pull request has been marked as stale due to inactivity. If no further activity occurs, it will be closed in 7 days."
|
| 19 |
+
days-before-stale: 30 # Number of days before marking an issue or PR as stale
|
| 20 |
+
days-before-close: 7 # Number of days after being marked stale before closing
|
| 21 |
+
stale-issue-label: "stale" # Label to apply to stale issues
|
| 22 |
+
stale-pr-label: "stale" # Label to apply to stale pull requests
|
| 23 |
+
exempt-issue-labels: "pinned,important" # Issues with these labels won't be marked stale
|
| 24 |
+
exempt-pr-labels: "pinned,important" # PRs with these labels won't be marked stale
|
| 25 |
+
operations-per-run: 30 # Limits the number of actions per run to avoid API rate limits
|