From 70e33d4842b97b381833ad5c9c93a562b39d5d9f Mon Sep 17 00:00:00 2001 From: Wojtek Zieba Date: Thu, 27 Jul 2023 10:38:48 +0200 Subject: [PATCH] Remove 'pull_request_target' trigger event As this event triggers build against of the base of the pull request, the build triggered by it will fail when PR fixes already failing build of the base. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d08a828..3433216 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,5 +1,5 @@ name: Sample workflow for App Center action -on: [push, pull_request, workflow_dispatch, pull_request_target] +on: [push, pull_request, workflow_dispatch] jobs: run: runs-on: ubuntu-latest