mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-21 08:04:26 +08:00
0.2.7
修改天气组件,ci工作流
This commit is contained in:
37
.github/workflows/issue-management.yml
vendored
Normal file
37
.github/workflows/issue-management.yml
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
name: Issue Management
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
# Every day at 1:30 AM UTC
|
||||
- cron: "30 1 * * *"
|
||||
|
||||
jobs:
|
||||
close-stale-issues:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
|
||||
steps:
|
||||
- name: Close stale issues
|
||||
uses: actions/stale@v9
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
any-of-labels: 'need-more-info,waiting-for-response'
|
||||
days-before-issue-stale: 14
|
||||
days-before-issue-close: 7
|
||||
days-before-pr-stale: 21
|
||||
days-before-pr-close: 14
|
||||
stale-issue-label: 'stale'
|
||||
stale-pr-label: 'stale'
|
||||
stale-issue-message: |
|
||||
This issue has been inactive for 14 days.
|
||||
It will be closed in 7 days if there's no activity.
|
||||
Please comment to keep it open.
|
||||
stale-pr-message: |
|
||||
This PR has been inactive for 21 days.
|
||||
It will be closed in 14 days if there's no activity.
|
||||
Please comment or update the PR to keep it open.
|
||||
close-issue-message: 'Closed due to inactivity. Feel free to reopen if needed.'
|
||||
close-pr-message: 'Closed due to inactivity. Feel free to reopen if needed.'
|
||||
Reference in New Issue
Block a user