diff options
author | James McCoy <jamessan@jamessan.com> | 2021-08-15 09:27:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-15 15:27:50 +0200 |
commit | c6ef95606f43225885a0a7ba06780ededf9f7cab (patch) | |
tree | de5370f6924f328d676068fcd88494903d228847 | |
parent | 0f2af87a382f57fab13f0127d84f3cfa27e15ec3 (diff) | |
download | rneovim-c6ef95606f43225885a0a7ba06780ededf9f7cab.tar.gz rneovim-c6ef95606f43225885a0a7ba06780ededf9f7cab.tar.bz2 rneovim-c6ef95606f43225885a0a7ba06780ededf9f7cab.zip |
fix(ci): re-run GHA for ready_for_review events (#15377)
By default, the pull_request target only runs for the "opened",
"synchronize", and "reopened" events.
Since we've disabled GHA CI for "draft" PRs, the "ready_for_review"
event also needs to be included so CI is automatically run when leaving
draft status.
-rw-r--r-- | .github/workflows/ci.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b89730434..f75320048b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,7 @@ on: push: branches: '**' pull_request: + types: [opened, synchronize, reopened, ready_for_review] branches: - 'master' - 'release-[0-9]+.[0-9]+' |