-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: refactor code base and remove unnecessary dependencies
- Loading branch information
Showing
29 changed files
with
1,387 additions
and
279 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,44 @@ | ||
name: Stale | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 12 * * *' | ||
|
||
jobs: | ||
Stale: | ||
runs-on: ubuntu-latest | ||
name: Run stale | ||
steps: | ||
- name: Checkout | ||
id: checkout | ||
uses: actions/checkout@v4 | ||
- name: Stale | ||
id: stale | ||
uses: sonia-corporation/[email protected] | ||
with: | ||
pull-request-stale-label: stale-label | ||
pull-request-days-before-stale: 14 | ||
pull-request-days-before-close: 10 | ||
pull-request-ignore-all-assignees: true | ||
pull-request-delete-branch-after-close: true | ||
pull-request-stale-comment: | | ||
This pull is inactive since 14 days! | ||
If there is no activity, it will be closed in two weeks. | ||
You should take one of the following actions: | ||
- Manually close this PR if it is no longer relevant | ||
- Push new commits or comment if you have more information to share | ||
issue-stale-label: inactive | ||
issue-ignore-all-assignees: true | ||
issue-days-before-stale: 14 | ||
issue-days-before-close: 10 | ||
issue-stale-comment: | | ||
This issue is inactive since 14 days! | ||
If there is no activity, it will be closed in two weeks. | ||
You should take one of the following actions: | ||
- Manually close this issue if it is no longer relevant | ||
- Comment if you have more information to share | ||
issue-add-labels-after-close: | | ||
closed-due-to-inactivity |
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
Oops, something went wrong.