repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | name: Issue Close Require |
| #2 | |
| #3 | on: |
| #4 | workflow_dispatch: |
| #5 | schedule: |
| #6 | - cron: '0 0 * * *' |
| #7 | |
| #8 | permissions: |
| #9 | contents: read |
| #10 | |
| #11 | jobs: |
| #12 | issue-check-inactive: |
| #13 | permissions: |
| #14 | issues: write # for actions-cool/issues-helper to update issues |
| #15 | pull-requests: write # for actions-cool/issues-helper to update PRs |
| #16 | runs-on: ubuntu-latest |
| #17 | steps: |
| #18 | - name: check-inactive |
| #19 | uses: actions-cool/issues-helper@v3 |
| #20 | with: |
| #21 | actions: 'check-inactive' |
| #22 | token: ${{ secrets.GH_TOKEN }} |
| #23 | inactive-label: 'Inactive' |
| #24 | inactive-day: 30 |
| #25 | |
| #26 | issue-close-require: |
| #27 | permissions: |
| #28 | issues: write # for actions-cool/issues-helper to update issues |
| #29 | pull-requests: write # for actions-cool/issues-helper to update PRs |
| #30 | runs-on: ubuntu-latest |
| #31 | steps: |
| #32 | - name: need reproduce |
| #33 | uses: actions-cool/issues-helper@v3 |
| #34 | with: |
| #35 | actions: 'close-issues' |
| #36 | token: ${{ secrets.GH_TOKEN }} |
| #37 | labels: '✅ Fixed' |
| #38 | inactive-day: 3 |
| #39 | body: | |
| #40 | 👋 @{{ github.event.issue.user.login }} |
| #41 | <br/> |
| #42 | Since the issue was labeled with `✅ Fixed`, but no response in 3 days. This issue will be closed. If you have any questions, you can comment and reply.\ |
| #43 | 由于该 issue 被标记为已修复,同时 3 天未收到回应。现关闭 issue,若有任何问题,可评论回复。 |
| #44 | - name: need reproduce |
| #45 | uses: actions-cool/issues-helper@v3 |
| #46 | with: |
| #47 | actions: 'close-issues' |
| #48 | token: ${{ secrets.GH_TOKEN }} |
| #49 | labels: '🤔 Low Quality' |
| #50 | inactive-day: 3 |
| #51 | body: | |
| #52 | 👋 @{{ github.event.issue.user.login }} |
| #53 | <br/> |
| #54 | Since the issue was labeled with `🤔 Low Quality`, but no response in 3 days. This issue will be closed. If you have any questions, you can comment and reply.\ |
| #55 | 由于该 issue 被标记为低质量提示词,却 3 天未收到回应。现关闭 issue,可以改进后重新开启 issue,若有任何问题,可评论回复。 |
| #56 | - name: need reproduce |
| #57 | uses: actions-cool/issues-helper@v3 |
| #58 | with: |
| #59 | actions: 'close-issues' |
| #60 | token: ${{ secrets.GH_TOKEN }} |
| #61 | labels: "🙅🏻♀️ WON'T DO" |
| #62 | inactive-day: 3 |
| #63 | body: | |
| #64 | 👋 @{{ github.event.issue.user.login }} |
| #65 | <br/> |
| #66 | Since the issue was labeled with `🙅🏻♀️ WON'T DO`, and no response in 3 days. This issue will be closed. If you have any questions, you can comment and reply.\ |
| #67 | 由于该 issue 被标记为暂不处理,同时 3 天未收到回应。现关闭 issue,若有任何问题,可评论回复。 |
| #68 | |
| #69 | |
| #70 |