Initial commit
This commit is contained in:
40
.github/workflows/inactive.yaml
vendored
Normal file
40
.github/workflows/inactive.yaml
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
name: Close and lock inactive threads
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 8 * * *"
|
||||
jobs:
|
||||
manage-inactive:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
actions: write
|
||||
issues: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- uses: actions/stale@v9
|
||||
with:
|
||||
days-before-issue-stale: 45
|
||||
days-before-issue-close: 30
|
||||
stale-issue-label: inactive
|
||||
stale-issue-message: >
|
||||
This issue has been automatically marked as inactive
|
||||
due to lack of recent activity.
|
||||
Should you believe it remains unresolved and warrants attention,
|
||||
kindly leave a comment on this thread.
|
||||
exempt-issue-labels: enhancement,discussion
|
||||
days-before-pr-stale: -1
|
||||
days-before-pr-close: -1
|
||||
operations-per-run: 128
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
- uses: dessant/lock-threads@v5
|
||||
with:
|
||||
issue-inactive-days: 60
|
||||
issue-comment: >
|
||||
This issue has been automatically locked since there
|
||||
has not been any recent activity after it was closed.
|
||||
Please open a new issue for related bugs.
|
||||
pr-inactive-days: 90
|
||||
pr-comment: >
|
||||
This pull request has been automatically locked since there
|
||||
has not been any recent activity after it was closed.
|
||||
Please open a new issue for related bugs.
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
26
.github/workflows/translate.yaml
vendored
Normal file
26
.github/workflows/translate.yaml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
name: 'translator'
|
||||
on:
|
||||
issues:
|
||||
types: [opened, edited]
|
||||
issue_comment:
|
||||
types: [created, edited]
|
||||
discussion:
|
||||
types: [created, edited]
|
||||
discussion_comment:
|
||||
types: [created, edited]
|
||||
|
||||
jobs:
|
||||
translate:
|
||||
permissions:
|
||||
issues: write
|
||||
discussions: write
|
||||
pull-requests: write
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: lizheming/github-translate-action
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
IS_MODIFY_TITLE: true
|
||||
APPEND_TRANSLATION: true
|
||||
Reference in New Issue
Block a user