From 5871b08a41d1479c3519fca5c4d630e3c8169184 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Sun, 23 Apr 2023 21:27:59 -0300 Subject: ci: run for every branch instead of just master Having CI always run on WIP branches without having to open a PR beforehand makes it easier to debug CI issues. GitHub currently does not have any apparent limit for CI runs and there are no project-specific secrets as far as I know, so it should be safe to remove these restrictions. --- .github/workflows/build-extra.yml | 2 -- .github/workflows/build.yml | 2 -- .github/workflows/codeql-analysis.yml | 3 --- .github/workflows/profile-checks.yml | 2 -- 4 files changed, 9 deletions(-) diff --git a/.github/workflows/build-extra.yml b/.github/workflows/build-extra.yml index 04023ab45..e7f4109f0 100644 --- a/.github/workflows/build-extra.yml +++ b/.github/workflows/build-extra.yml @@ -2,7 +2,6 @@ name: Build-extra CI on: push: - branches: [ master ] paths-ignore: - '.github/ISSUE_TEMPLATE/*' - 'contrib/syntax/**' @@ -25,7 +24,6 @@ on: - SECURITY.md - src/firecfg/firecfg.config pull_request: - branches: [ master ] paths-ignore: - '.github/ISSUE_TEMPLATE/*' - 'contrib/syntax/**' diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c6bb3b67c..aea5c2633 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,6 @@ name: Build CI on: push: - branches: [ master ] paths-ignore: - '.github/ISSUE_TEMPLATE/*' - .git-blame-ignore-revs @@ -20,7 +19,6 @@ on: - RELNOTES - SECURITY.md pull_request: - branches: [ master ] paths-ignore: - '.github/ISSUE_TEMPLATE/*' - .git-blame-ignore-revs diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 4da2ecd3d..1f74f01a6 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -7,7 +7,6 @@ name: "CodeQL" on: push: - branches: [ master ] paths-ignore: - '.github/ISSUE_TEMPLATE/*' - 'contrib/syntax/**' @@ -30,8 +29,6 @@ on: - SECURITY.md - src/firecfg/firecfg.config pull_request: - # The branches below must be a subset of the branches above - branches: [ master ] paths-ignore: - '.github/ISSUE_TEMPLATE/*' - 'contrib/syntax/**' diff --git a/.github/workflows/profile-checks.yml b/.github/workflows/profile-checks.yml index 9d9e67fe6..72e3e6f41 100644 --- a/.github/workflows/profile-checks.yml +++ b/.github/workflows/profile-checks.yml @@ -2,7 +2,6 @@ name: Profile Checks on: push: - branches: [ master ] paths: - 'ci/check/profiles/**' - 'etc/**' @@ -10,7 +9,6 @@ on: - contrib/sort.py - src/firecfg/firecfg.config pull_request: - branches: [ master ] paths: - 'ci/check/profiles/**' - 'etc/**' -- cgit v1.2.3-54-g00ecf