From 1ca1c98f0491c024a8ec887ae832796e01c74aae Mon Sep 17 00:00:00 2001 From: Frederic Pillon Date: Sun, 23 Feb 2020 18:10:37 +0100 Subject: [PATCH 1/2] [CI] Allow GitHub actions only on push on master Signed-off-by: Frederic Pillon --- .github/workflows/Continuous-Integration.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/Continuous-Integration.yml b/.github/workflows/Continuous-Integration.yml index 3d772c756d..6407bbd18d 100644 --- a/.github/workflows/Continuous-Integration.yml +++ b/.github/workflows/Continuous-Integration.yml @@ -1,6 +1,8 @@ name: STM32 Core Continuous Integration on: push: + branches: + - master paths-ignore: - '*.json' - '**.md' From 4176732927ad1ae692d888671ebdc6253438584b Mon Sep 17 00:00:00 2001 From: Frederic Pillon Date: Mon, 24 Feb 2020 05:08:33 +0100 Subject: [PATCH 2/2] [CI] Allow build for python build scripts Signed-off-by: Frederic Pillon --- .github/workflows/Continuous-Integration.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/Continuous-Integration.yml b/.github/workflows/Continuous-Integration.yml index 6407bbd18d..8a3c340aaa 100644 --- a/.github/workflows/Continuous-Integration.yml +++ b/.github/workflows/Continuous-Integration.yml @@ -8,6 +8,8 @@ on: - '**.md' - keywords.txt - CI/** + - '!CI/build/arduino-cli.py' + - '!CI/build/platformio-builder.py' - tools/** pull_request: paths-ignore: @@ -15,6 +17,8 @@ on: - '**.md' - keywords.txt - CI/** + - '!CI/build/arduino-cli.py' + - '!CI/build/platformio-builder.py' - tools/** jobs: astyle_check: