From e22ac21be18970bbdf3b919390f7feca351df69f Mon Sep 17 00:00:00 2001 From: Wangchong Zhou Date: Tue, 2 Jan 2024 15:29:57 +0800 Subject: [PATCH] fix(cd): run full matrix for dependabot PRs --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0dced5a70e2..13598746321 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ env: # official release repo DOCKER_REPOSITORY: kong/kong PRERELEASE_DOCKER_REPOSITORY: kong/kong - FULL_RELEASE: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} + FULL_RELEASE: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.actor == 'dependabot[bot]'}} # only for pr GHA_CACHE: ${{ github.event_name == 'pull_request' }}