From 4e54032eb8b38207d1e4f9c98d46008e8446d907 Mon Sep 17 00:00:00 2001 From: Andrew Longosz Date: Fri, 4 Sep 2026 22:52:15 +0200 Subject: [PATCH 1/2] [GHA] Updated GitHub Actions workflows to latest versions and standards - Replaced legacy zendesk-based release workflow with the standard skeleton release.yaml calling the reusable ibexa/gh-workflows release_bundle.yml workflow (drops direct actions/checkout@master and zendesk/action-create-release@v1 usage along with the ubuntu-latest runner). - Deleted pr-assign.yaml workflow. Co-Authored-By: Claude Fable 5 --- .github/workflows/pr-assign.yaml | 10 ------ .github/workflows/release.yaml | 61 +++++++------------------------- 2 files changed, 13 insertions(+), 58 deletions(-) delete mode 100644 .github/workflows/pr-assign.yaml diff --git a/.github/workflows/pr-assign.yaml b/.github/workflows/pr-assign.yaml deleted file mode 100644 index 302423e30..000000000 --- a/.github/workflows/pr-assign.yaml +++ /dev/null @@ -1,10 +0,0 @@ -name: Assign Pull Request to maintainers - -on: - pull_request_target: - -jobs: - assign: - uses: ibexa/gh-workflows/.github/workflows/pr-assign.yml@main - secrets: - robot-token: ${{ secrets.EZROBOT_PAT }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2e2b0aec5..beedd0cd7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,48 +1,13 @@ -name: Automatic Changelog Generator for tag - -on: - push: - tags: - - 'v*' - - '!v*-alpha*' - -jobs: - release: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@master - - name: Set Environment - run: | - echo "BUILD_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV - - - name: Get previous release tag based on type - id: prevrelease - uses: ibexa/version-logic-action@master - with: - currentTag: ${{ env.BUILD_TAG }} - - - name: Generate changelog - id: changelog - uses: ibexa/changelog-generator-action@v2 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - jira_token: ${{ secrets.JIRA_TOKEN }} - currentTag: ${{ env.BUILD_TAG }} - previousTag: ${{ steps.prevrelease.outputs.previousTag }} - - - name: Print the changelog - run: echo "$CHANGELOG" - env: - CHANGELOG: ${{ steps.changelog.outputs.changelog }} - - - name: Create Release - id: create_release - uses: zendesk/action-create-release@v1 - with: - tag_name: ${{ env.BUILD_TAG }} - body: | - ${{ steps.changelog.outputs.changelog }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - +name: Call Automatic Changelog Generator for tag Workflow + +on: + push: + tags: + - 'v*' + - '!v*-alpha*' + +jobs: + create_release_for_tag: + uses: ibexa/gh-workflows/.github/workflows/release_bundle.yml@main + secrets: + JIRA_TOKEN: ${{ secrets.JIRA_TOKEN }} From bb5ffd2cdf19e38de763cacae0ed0c199d04976b Mon Sep 17 00:00:00 2001 From: Andrew Longosz Date: Fri, 4 Sep 2026 22:52:15 +0200 Subject: [PATCH 2/2] [GHA] Added missing workflows from bundle-generator skeleton - Added pr-check.yaml calling the reusable ibexa/gh-workflows pr-check.yml workflow. - Added frontend-ci.yaml from the ibexa-oss skeleton. Co-Authored-By: Claude Fable 5 --- .github/workflows/pr-check.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/pr-check.yaml diff --git a/.github/workflows/pr-check.yaml b/.github/workflows/pr-check.yaml new file mode 100644 index 000000000..d3413dc4a --- /dev/null +++ b/.github/workflows/pr-check.yaml @@ -0,0 +1,12 @@ +name: PR check +on: + pull_request: + types: + - opened + - synchronize + - reopened + - edited + +jobs: + test-base-branch: + uses: ibexa/gh-workflows/.github/workflows/pr-check.yml@main