-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add deny.toml file * Run cargo update * Update license list * Add Audit workflow for cargo deny * Run clippy through reviewdog * Change names of workflows and tasks Include audit.yml in paths to monitor * Resolve clippy * Add codeowners file for Rust cli related projects * Resolve cargo deny issues * Add fpx to alias
- Loading branch information
Showing
8 changed files
with
235 additions
and
294 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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
[alias] | ||
fpx = "run --package fpx --" | ||
xtask = "run --package xtask --" |
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,9 @@ | ||
# Rust cli related files | ||
fpx @fiberplane/fpx-cli-devs | ||
xtask @fiberplane/fpx-cli-devs | ||
Cargo.* @fiberplane/fpx-cli-devs | ||
.cargo @fiberplane/fpx-cli-devs | ||
deny.toml @fiberplane/fpx-cli-devs | ||
|
||
# Workflow related files | ||
.github @fiberplane/infrastructure-devs |
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,28 @@ | ||
--- | ||
name: Audit | ||
|
||
on: | ||
push: | ||
branches: ["**"] | ||
|
||
paths: | ||
- "**/Cargo.toml" | ||
- "**/Cargo.lock" | ||
- "**/deny.toml" | ||
- ".github/workflows/audit.yaml" | ||
|
||
schedule: | ||
- cron: "23 1 * * *" | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
audit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
submodules: recursive | ||
|
||
- uses: EmbarkStudios/cargo-deny-action@v1 |
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.