mirror of
https://github.com/rust-unofficial/awesome-rust
synced 2024-11-25 05:10:19 +00:00
Editorconfig fixes
This commit is contained in:
parent
2a35def5ef
commit
8cc83c00b8
6 changed files with 41 additions and 44 deletions
10
.github/workflows/approve.yml
vendored
10
.github/workflows/approve.yml
vendored
|
@ -1,8 +1,8 @@
|
|||
name: Automatic Approve
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
workflow_dispatch:
|
||||
- cron: 0 0 * * *
|
||||
workflow_dispatch: null
|
||||
jobs:
|
||||
automatic-approve:
|
||||
name: Automatic Approve
|
||||
|
@ -11,6 +11,6 @@ jobs:
|
|||
- name: Automatic Approve
|
||||
uses: mheap/automatic-approve-action@v1.1.0
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
workflows: "rust.yml"
|
||||
dangerous_files: "src/main.rs,Cargo.toml,Cargo.lock"
|
||||
token: '${{ secrets.GITHUB_TOKEN }}'
|
||||
workflows: rust.yml
|
||||
dangerous_files: 'src/main.rs,Cargo.toml,Cargo.lock'
|
||||
|
|
14
.github/workflows/rust.yml
vendored
14
.github/workflows/rust.yml
vendored
|
@ -1,20 +1,18 @@
|
|||
name: Rust
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
branches:
|
||||
- master
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
|
||||
- cron: 0 0 * * *
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
|
@ -29,7 +27,7 @@ jobs:
|
|||
- uses: pat-s/always-upload-cache@v2.1.5
|
||||
with:
|
||||
path: results/results.yaml
|
||||
key: results-${{ hashFiles('Cargo.lock') }}-${{ hashFiles('README.md') }}-${{ env.CACHE_ID }}
|
||||
key: results-${{ hashFiles(''Cargo.lock'') }}-${{ hashFiles(''README.md'') }}-${{ env.CACHE_ID }}
|
||||
restore-keys: |
|
||||
results-${{ hashFiles('Cargo.lock') }}-${{ hashFiles('README.md') }}-
|
||||
results-${{ hashFiles('Cargo.lock') }}-
|
||||
|
|
|
@ -14,11 +14,10 @@ If you want to add an entry to the `README.md` please consider this:
|
|||
- if you want to add something, please use the template `[ACCOUNT/REPO](https://github.com/ACCOUNT/REPO) [[CRATE](https://crates.io/crates/CRATE)] — DESCRIPTION`
|
||||
* if you've not published your crate to `crates.io` remove the `[[CRATE](...)]` part.
|
||||
* if you have a CI build, please add the build badge. Put the image after the description, separated by a space. Please make sure to add the branch information to the image:
|
||||
* example for Travis: ` [<img src="https://api.travis-ci.org/XXX/CRATE.svg?branch=master">](https://travis-ci.org/XXX/CRATE)`
|
||||
* for Github actions please see https://docs.github.com/en/actions/managing-workflow-runs/adding-a-workflow-status-badge
|
||||
* example for Travis: `[<img src="https://api.travis-ci.org/XXX/CRATE.svg?branch=master">](https://travis-ci.org/XXX/CRATE)`
|
||||
* for Github actions please see [adding-a-workflow-status-badge](https://docs.github.com/en/actions/managing-workflow-runs/adding-a-workflow-status-badge)
|
||||
- please pay attention to the alphabetical ordering.
|
||||
|
||||
|
||||
## Removing projects
|
||||
|
||||
We don't remove projects unless they are outright broken or pronounced deprecated by another project or by its author.
|
||||
|
|
Loading…
Reference in a new issue