From 66b501bc11ec4026d38ce99b468d9b2af83696c5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 21:23:05 +0000 Subject: [PATCH 1/4] externpro 25.07.6-8-g0d870ff --- .devcontainer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer b/.devcontainer index 2659643..0d870ff 160000 --- a/.devcontainer +++ b/.devcontainer @@ -1 +1 @@ -Subproject commit 26596433a6e75f82174ae25041825c8a58d43d04 +Subproject commit 0d870ffbd0caf56ac7ac04c09c46ef99dc8dbf49 From 447a8d07856b6dcdb582ae8849eb8ac36bd25237 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 21:23:05 +0000 Subject: [PATCH 2/4] add release-tag intent --- .github/release-tag.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .github/release-tag.yml diff --git a/.github/release-tag.yml b/.github/release-tag.yml new file mode 100644 index 0000000..5a7465e --- /dev/null +++ b/.github/release-tag.yml @@ -0,0 +1,2 @@ +tag: v2.14.02.3 +message: "externpro version 2.14.02.3 tag" From f575aaaae3396ca1428d454f51261f6f6477ca55 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 7 Feb 2026 21:23:05 +0000 Subject: [PATCH 3/4] externpro 25.07.6-8-g0d870ff workflow updates --- .github/workflows/xpbuild.yml | 12 ++++++------ .github/workflows/xprelease.yml | 29 +++++++++++++++++++++++++++-- .github/workflows/xptag.yml | 16 ++++++++++++++++ 3 files changed, 49 insertions(+), 8 deletions(-) create mode 100644 .github/workflows/xptag.yml diff --git a/.github/workflows/xpbuild.yml b/.github/workflows/xpbuild.yml index 70e7cbb..37a411c 100644 --- a/.github/workflows/xpbuild.yml +++ b/.github/workflows/xpbuild.yml @@ -1,12 +1,12 @@ -name: Build +name: xpBuild permissions: contents: read pull-requests: write on: push: - branches: [ "dev" ] + tags: ["xpv*"] pull_request: - branches: [ "dev" ] + branches: ["xpro"] workflow_dispatch: jobs: linux: @@ -14,17 +14,17 @@ jobs: contents: read pull-requests: write packages: write - uses: externpro/externpro/.github/workflows/build-linux.yml@25.07.1 + uses: externpro/externpro/.github/workflows/build-linux.yml@25.07.6 secrets: inherit with: cmake-workflow-preset: LinuxRelease macos: - uses: externpro/externpro/.github/workflows/build-macos.yml@25.07.1 + uses: externpro/externpro/.github/workflows/build-macos.yml@25.07.6 secrets: inherit with: cmake-workflow-preset: DarwinRelease windows: - uses: externpro/externpro/.github/workflows/build-windows.yml@25.07.1 + uses: externpro/externpro/.github/workflows/build-windows.yml@25.07.6 secrets: inherit with: cmake-workflow-preset: WindowsRelease diff --git a/.github/workflows/xprelease.yml b/.github/workflows/xprelease.yml index dbac778..a2eb282 100644 --- a/.github/workflows/xprelease.yml +++ b/.github/workflows/xprelease.yml @@ -1,4 +1,4 @@ -name: Release +name: xpRelease on: workflow_dispatch: inputs: @@ -6,10 +6,35 @@ on: description: 'URL of the workflow run containing artifacts to upload (e.g., https://github.com/owner/repo/actions/runs/123456789)' required: true type: string + workflow_run: + workflows: ["xpBuild"] + types: [completed] jobs: + dispatch-at-tag: + if: >- + github.event_name == 'workflow_run' && + github.event.workflow_run.conclusion == 'success' && + startsWith(github.event.workflow_run.head_branch, 'xpv') + runs-on: ubuntu-latest + permissions: + actions: write + steps: + - + name: Dispatch xpRelease at tag + shell: bash + env: + GH_TOKEN: ${{ github.token }} + RUN_URL: ${{ github.event.workflow_run.html_url }} + TAG_REF: ${{ github.event.workflow_run.head_branch }} + run: | + set -euo pipefail + gh api -X POST "repos/${{ github.repository }}/actions/workflows/xprelease.yml/dispatches" \ + -f ref="$TAG_REF" \ + -f inputs[workflow_run_url]="$RUN_URL" # Upload build artifacts as release assets release-from-build: - uses: externpro/externpro/.github/workflows/release-from-build.yml@25.07.1 + if: github.event_name == 'workflow_dispatch' + uses: externpro/externpro/.github/workflows/release-from-build.yml@25.07.6 with: workflow_run_url: ${{ github.event.inputs.workflow_run_url }} permissions: diff --git a/.github/workflows/xptag.yml b/.github/workflows/xptag.yml new file mode 100644 index 0000000..b5ce950 --- /dev/null +++ b/.github/workflows/xptag.yml @@ -0,0 +1,16 @@ +name: xpTag +permissions: + contents: write + issues: write +on: + pull_request: + types: [closed] +jobs: + tag: + if: ${{ github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'xpro' && contains(github.event.pull_request.labels.*.name, 'release:tag') }} + uses: externpro/externpro/.github/workflows/tag-release.yml@25.07.6 + with: + merge_sha: ${{ github.event.pull_request.merge_commit_sha }} + pr_number: ${{ github.event.pull_request.number }} + secrets: + workflow_write_token: ${{ secrets.XPUPDATE_TOKEN }} From 1f62a2de7b9128678b535b28f1195ea471c99b92 Mon Sep 17 00:00:00 2001 From: smanders Date: Sat, 7 Feb 2026 14:25:38 -0700 Subject: [PATCH 4/4] Update release tag and message to xpv2.14.02.4 --- .github/release-tag.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/release-tag.yml b/.github/release-tag.yml index 5a7465e..7563d21 100644 --- a/.github/release-tag.yml +++ b/.github/release-tag.yml @@ -1,2 +1,2 @@ -tag: v2.14.02.3 -message: "externpro version 2.14.02.3 tag" +tag: xpv2.14.02.4 +message: "xpro version 2.14.02.4 tag"