-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: remove cargo-chef, revert to stable rust
- Loading branch information
Showing
4 changed files
with
47 additions
and
34 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,33 @@ | ||
name: Code coverage | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Run it every 5 days. | ||
- cron: "0 5 * * *" | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 50 | ||
steps: | ||
- uses: actions/stale@main | ||
id: stale | ||
with: | ||
# PRs | ||
days-before-pr-stale: 90 | ||
days-before-pr-close: 14 | ||
stale-pr-message: > | ||
This pull request hasn't had any activity for the last 90 days. If | ||
there's no more activity over the course of the next 14 days, it will | ||
automatically be closed. | ||
# Issues | ||
days-before-issue-stale: 180 | ||
# Never close stale issues, only mark them as such. | ||
days-before-issue-close: -1 | ||
stale-issue-message: > | ||
Looks like this issue has been open for 6 months with no activity. | ||
Is it still relevant? If not, please remember to close it. | ||
- name: Print stale outputs | ||
run: echo ${{ join(steps.stale.outputs.*, ',') }} |
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
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
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
[toolchain] | ||
channel = "stable" | ||
components = ["rustfmt", "clippy"] | ||
profile = "minimal" | ||
channel = "1.65.0" | ||
profile = "default" |