diff --git a/.github/workflows/publish.yml b/.github/workflows/ci-publish.yml similarity index 97% rename from .github/workflows/publish.yml rename to .github/workflows/ci-publish.yml index 54ac8d6..1ff8e0c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/ci-publish.yml @@ -1,4 +1,4 @@ -name: Publish +name: CI Publish on: push: @@ -9,7 +9,7 @@ env: jobs: tests: - name: Call Rust Tests + name: Rust Tests For Publish uses: ./.github/workflows/rust-tests-workflow.yml # tests: diff --git a/.github/workflows/rust-tests.yml b/.github/workflows/ci-tests.yml similarity index 77% rename from .github/workflows/rust-tests.yml rename to .github/workflows/ci-tests.yml index 34c3edd..00677b5 100644 --- a/.github/workflows/rust-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -1,4 +1,4 @@ -name: Rust Tests - On Push Branch +name: CI Tests on: pull_request: @@ -14,7 +14,10 @@ on: - 'ci/Dockerfile' workflow_dispatch: +permissions: + statuses: write + jobs: tests: - name: Call Rust Tests + name: Rust Tests For Branch Push uses: ./.github/workflows/rust-tests-workflow.yml \ No newline at end of file