diff options
author | Michaƫl Zasso <targos@protonmail.com> | 2021-07-16 08:24:23 +0200 |
---|---|---|
committer | James M Snell <jasnell@gmail.com> | 2021-07-19 07:14:50 -0700 |
commit | c7d66d435d05ecc6e967efd17a14f5b3dd3aae57 (patch) | |
tree | d3003df23222713125a1ab627bd555d2944b7b3a /.github/workflows/linters.yml | |
parent | 284dec77bdfbcae24022b4ed06d2115b81ebf8a4 (diff) | |
download | node-new-c7d66d435d05ecc6e967efd17a14f5b3dd3aae57.tar.gz |
build: run workflows when a PR is ready for review
Add `ready_for_review` to the activity types for the pull_request event.
PR-URL: https://github.com/nodejs/node/pull/39405
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to '.github/workflows/linters.yml')
-rw-r--r-- | .github/workflows/linters.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 98a9e3374c..6bdaee8d65 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -2,6 +2,7 @@ name: linters on: pull_request: + types: [opened, synchronize, reopened, ready_for_review] push: branches: - master |