This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v1-10-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 730a8d694fd72e067351688f047c36b6f3dba373 Author: Jarek Potiuk <[email protected]> AuthorDate: Mon Oct 12 17:39:47 2020 +0200 Enables back duplicate cancelling on push/schedule (#11471) We disabled duplicate cancelling on push/schedule in #11397 but then it causes a lot of extra strain in case several commits are merged in quick succession. The master merges are always full builds and take a lot of time, but if we merge PRs quickly, the subsequent merge cancels the previous ones. This has the negative consequence that we might not know who broke the master build, but this happens rarely enough to suffer the pain at expense of much less strained queue in GitHub Actions. (cherry picked from commit f124d3f4ebda8a3ab49b2b87c1164d354796e79d) --- .github/workflows/build-images-workflow-run.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build-images-workflow-run.yml b/.github/workflows/build-images-workflow-run.yml index 2ad2931..a151989 100644 --- a/.github/workflows/build-images-workflow-run.yml +++ b/.github/workflows/build-images-workflow-run.yml @@ -71,7 +71,6 @@ jobs: cancelMode: duplicates sourceRunId: ${{ github.event.workflow_run.id }} notifyPRCancel: true - skipEventTypes: '["schedule", "push"]' - name: "Output BUILD_IMAGES" id: build-images run: |
