diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml new file mode 100644 index 0000000..f13a736 --- /dev/null +++ b/.github/workflows/checks.yaml @@ -0,0 +1,14 @@ +name: checks + +on: + pull_request_target: + types: + - opened + - synchronize + +jobs: + rust-pipeline: + uses: affinidi/pipeline-rust/.github/workflows/checks.yaml@main + secrets: inherit + with: + auditIgnore: "RUSTSEC-2022-0040,RUSTSEC-2023-0071" \ No newline at end of file diff --git a/.github/workflows/on-push.yaml b/.github/workflows/on-push.yaml deleted file mode 100644 index 82eda72..0000000 --- a/.github/workflows/on-push.yaml +++ /dev/null @@ -1,18 +0,0 @@ -name: on-push - -on: - push: - branches: - - main - pull_request_target: - types: - - opened - - synchronize - -jobs: - rust-workflow: - uses: affinidi/pipeline-rust/.github/workflows/on-push.yaml@main - secrets: inherit - with: - auditIgnore: "RUSTSEC-2022-0040,RUSTSEC-2023-0071" - publish_dry_run: false \ No newline at end of file diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..e647284 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,14 @@ +name: "release" + +on: + push: + branches: + - main + + +jobs: + rust-pipeline: + uses: affinidi/pipeline-rust/.github/workflows/release.yaml@main + secrets: inherit + with: + auditIgnore: "RUSTSEC-2022-0040,RUSTSEC-2023-0071,RUSTSEC-2024-0373" \ No newline at end of file