From 1f808400fbf5ff53980c02980b95faf62feb394a Mon Sep 17 00:00:00 2001 From: Vince Prignano Date: Mon, 29 Mar 2021 08:05:16 -0700 Subject: [PATCH] :seedling: Include 'edited' to the list of PR types for golangci action By default (see https://docs.github.com/en/actions/reference/events-that-trigger-workflows#pull_request) github actions are only triggered on opened, syncroize, and reopened. This PR adds edited to the mix for older PRs. Signed-off-by: Vince Prignano --- .github/workflows/golangci-lint.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 7a7ea2e17868..8a834f7fa021 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -1,6 +1,7 @@ name: golangci-lint on: pull_request: + types: [opened, edited, synchronize, reopened] branches: - main - master