This is an automated email from the ASF dual-hosted git repository.
dhanak pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-docs.git
The following commit(s) were added to refs/heads/main by this push:
new b5036ed18 NO_ISSUE: Remove obsolete github workflows (#4581)
b5036ed18 is described below
commit b5036ed1834dd671afbd4127bd65f1a36d156d6b
Author: Dominik HanĂ¡k <[email protected]>
AuthorDate: Wed Feb 25 10:24:01 2026 +0100
NO_ISSUE: Remove obsolete github workflows (#4581)
---
.github/workflows/pr-backporting.yml | 43 ------------------------------------
.github/workflows/pull_request.yml | 36 ------------------------------
.github/workflows/push.yml | 23 -------------------
3 files changed, 102 deletions(-)
diff --git a/.github/workflows/pr-backporting.yml
b/.github/workflows/pr-backporting.yml
deleted file mode 100644
index 8d6e51554..000000000
--- a/.github/workflows/pr-backporting.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-name: Pull Request Backporting
-
-on:
- pull_request_target:
- types: [closed, labeled]
- branches:
- - main
-
-env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
-jobs:
- compute-targets:
- if: ${{ github.event.pull_request.state == 'closed' &&
github.event.pull_request.merged }}
- runs-on: ubuntu-latest
- outputs:
- target-branches: ${{ steps.set-targets.outputs.targets }}
- env:
- LABELS: ${{ toJSON(github.event.pull_request.labels) }}
- steps:
- - name: Set target branches
- id: set-targets
- uses: kiegroup/kie-ci/.ci/actions/parse-labels@main
- with:
- labels: ${LABELS}
-
- backporting:
- if: ${{ github.event.pull_request.state == 'closed' &&
github.event.pull_request.merged &&
needs.compute-targets.outputs.target-branches != '[]' }}
- name: "[${{ matrix.target-branch }}] - Backporting"
- runs-on: ubuntu-latest
- needs: compute-targets
- strategy:
- matrix:
- target-branch: ${{
fromJSON(needs.compute-targets.outputs.target-branches) }}
- fail-fast: true
- env:
- REVIEWERS: ${{ toJSON(github.event.pull_request.requested_reviewers) }}
- steps:
- - name: Backporting
- uses: kiegroup/kie-ci/.ci/actions/backporting@main
- with:
- target-branch: ${{ matrix.target-branch }}
- additional-reviewers: ${REVIEWERS}
diff --git a/.github/workflows/pull_request.yml
b/.github/workflows/pull_request.yml
deleted file mode 100644
index fc4559d63..000000000
--- a/.github/workflows/pull_request.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-name: Build Chain
-
-on: [workflow_dispatch]
-
-jobs:
- build-chain:
- concurrency:
- group: pull_request-${{ github.head_ref }}
- cancel-in-progress: true
- strategy:
- matrix:
- os: [ubuntu-latest]
- java-version: [8, 11]
- maven-version: ['3.8.1']
- fail-fast: false
- runs-on: ${{ matrix.os }}
- name: ${{ matrix.os }} - Java ${{ matrix.java-version }} - Maven
- steps:
- - name: Support long paths
- if: ${{ matrix.os == 'windows-latest' }}
- uses: kiegroup/kie-ci/.ci/actions/long-paths@main
- - name: Java and Maven Setup
- uses: kiegroup/kie-ci/.ci/actions/maven@main
- with:
- java-version: ${{ matrix.java-version }}
- maven-version: ${{ matrix.maven-version }}
- cache-key-prefix: ${{ runner.os }}-${{ matrix.java-version
}}-maven${{ matrix.maven-version }}
- - name: Build Chain
- uses: kiegroup/kie-ci/.ci/actions/build-chain@main
- with:
- definition-file:
https://raw.githubusercontent.com/${GROUP:kiegroup}/droolsjbpm-build-bootstrap/${BRANCH:main}/.ci/pull-request-config.yaml
- annotations-prefix: ${{ runner.os }}-${{ matrix.java-version }}/${{
matrix.maven-version }}
- github-token: "${{ secrets.GITHUB_TOKEN }}"
- - name: Surefire Report
- uses: kiegroup/kie-ci/.ci/actions/surefire-report@main
- if: ${{ always() }}
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml
deleted file mode 100644
index 479e0e246..000000000
--- a/.github/workflows/push.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-name: Quality sync checks
-
-on:
- push:
- branches:
- - main
- - main-kogito
-
-jobs:
- build:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- java: [8, 11]
-
- steps:
- - uses: actions/checkout@v6
- - name: Set up JDK
- uses: actions/setup-java@v5
- with:
- java-version: ${{ matrix.java }}
- - name: Build and quality sync checks from Maven profile
- run: mvn -B clean install -Psyncchecks --file pom.xml
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]