# HG changeset patch # User Bram Moolenaar # Date 1603381505 -7200 # Node ID f9d1d2acb2c791b9645dc7e570c89f5cfe7cc436 # Parent 9330690b80c80c5faaa66ac23cf478972d4bd76e patch 8.2.1887: Github actions not optimally configured Commit: https://github.com/vim/vim/commit/15ab48f088842de512ca5f13aa39a4dc7cac8477 Author: Bram Moolenaar Date: Thu Oct 22 17:33:17 2020 +0200 patch 8.2.1887: Github actions not optimally configured Problem: Github actions not optimally configured. Solution: Run CI on any pushed branches. Set fail-fast. (Ozaki Kiichi, closes #7184) diff --git a/.github/workflows/ci-windows.yaml b/.github/workflows/ci-windows.yaml --- a/.github/workflows/ci-windows.yaml +++ b/.github/workflows/ci-windows.yaml @@ -3,7 +3,7 @@ name: GitHub CI on: push: branches: - - '*' + - '**' pull_request: env: @@ -39,6 +39,7 @@ jobs: runs-on: windows-latest strategy: + fail-fast: false matrix: toolchain: [msvc, mingw] arch: [x64, x86] diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1887, +/**/ 1886, /**/ 1885,