This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch ci/adjust-ci-infra in repository https://gitbox.apache.org/repos/asf/struts.git
commit 582e92766d794b6c8aab329c13d80f016bde4403 Author: Lukasz Lenart <[email protected]> AuthorDate: Fri Apr 10 06:54:09 2026 +0200 ci(struts6): adjust workflows to use the new branch names --- .asf.yaml | 11 ++++++++++- .github/workflows/codeql.yml | 1 + .github/workflows/maven.yml | 3 ++- .github/workflows/scorecards-analysis.yaml | 4 +++- .github/workflows/sonar.yml | 3 ++- 5 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.asf.yaml b/.asf.yaml index f49aa6ff4..b77ee8236 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -24,7 +24,16 @@ github: # it does not work because our github teams are private/secret, see INFRA-25666 require_code_owner_reviews: false required_approving_review_count: 0 - release/*: + support/struts-6-x-x: + # contexts are the names of checks that must pass. + required_status_checks: + contexts: + - "Build and Test (JDK 8)" + required_pull_request_reviews: + # it does not work because our github teams are private/secret, see INFRA-25666 + require_code_owner_reviews: false + required_approving_review_count: 0 + release/struts-6-*: # contexts are the names of checks that must pass. required_status_checks: contexts: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index c5a78f535..07f8c40dc 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -18,6 +18,7 @@ name: "CodeQL" on: push: branches: + - 'support/struts-6-x-x' - 'release/*' pull_request: diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 88e0e9d64..c5ec2c8b3 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -19,7 +19,8 @@ on: pull_request: push: branches: - - master + - 'support/struts-6-x-x' + - 'release/*' permissions: read-all diff --git a/.github/workflows/scorecards-analysis.yaml b/.github/workflows/scorecards-analysis.yaml index f7300a0a7..6de12de8e 100644 --- a/.github/workflows/scorecards-analysis.yaml +++ b/.github/workflows/scorecards-analysis.yaml @@ -20,7 +20,9 @@ on: schedule: - cron: "30 1 * * 6" # Weekly on Saturdays push: - branches: [ "master" ] + branches: + - 'support/struts-6-x-x' + - 'release/*' permissions: read-all diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index d51234171..d843d7a65 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -19,7 +19,8 @@ on: pull_request: push: branches: - - release/6-8-x + - 'support/struts-6-x-x' + - 'release/*' permissions: read-all
