From 90214ab44f34c5e7890f88fae56df5d9a13d099a Mon Sep 17 00:00:00 2001 From: transistor Date: Sun, 17 Mar 2024 10:58:31 -0700 Subject: [PATCH] Removed ready_for_review condition for github actions Since it has the synchronize condition, it will update after each commit, whether in draft or not, so I think this should be alright --- .github/workflows/clippy.yaml | 2 +- .github/workflows/rustdoc.yaml | 2 +- .github/workflows/rustfmt.yaml | 2 +- .github/workflows/test.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/clippy.yaml b/.github/workflows/clippy.yaml index ee738f0..ad3b553 100644 --- a/.github/workflows/clippy.yaml +++ b/.github/workflows/clippy.yaml @@ -4,7 +4,7 @@ on: branches: - main pull_request: - types: [opened, synchronize, reopened, ready_for_review] + types: [opened, synchronize, reopened] permissions: contents: read diff --git a/.github/workflows/rustdoc.yaml b/.github/workflows/rustdoc.yaml index d3bbd8a..486e4a1 100644 --- a/.github/workflows/rustdoc.yaml +++ b/.github/workflows/rustdoc.yaml @@ -4,7 +4,7 @@ on: branches: - main pull_request: - types: [opened, synchronize, reopened, ready_for_review] + types: [opened, synchronize, reopened] permissions: contents: read diff --git a/.github/workflows/rustfmt.yaml b/.github/workflows/rustfmt.yaml index d7a2eb4..fc6144d 100644 --- a/.github/workflows/rustfmt.yaml +++ b/.github/workflows/rustfmt.yaml @@ -4,7 +4,7 @@ on: branches: - main pull_request: - types: [opened, synchronize, reopened, ready_for_review] + types: [opened, synchronize, reopened] permissions: contents: read diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 53774e9..9b6206a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,7 +4,7 @@ on: branches: - main pull_request: - types: [opened, synchronize, reopened, ready_for_review] + types: [opened, synchronize, reopened] permissions: contents: read