From 0ef7cb81ee0d8d4d944b0884c45ab8bf8b50d666 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 11 Feb 2026 17:37:41 +0000 Subject: [PATCH 1/4] externpro 25.07.6-88-gb05bee7 --- .devcontainer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer b/.devcontainer index 6ecb6ef..b05bee7 160000 --- a/.devcontainer +++ b/.devcontainer @@ -1 +1 @@ -Subproject commit 6ecb6efd2c51ff0f83638817b0d3dbb8fbdc87b9 +Subproject commit b05bee72bf7b2b09fe21b2247e5d322d1667529f From 400728df04e7898aebbf1ceab57c74ce0c05a325 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 11 Feb 2026 17:37:41 +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..1012c21 --- /dev/null +++ b/.github/release-tag.yml @@ -0,0 +1,2 @@ +tag: v2.7.6.5 +message: "externpro version 2.7.6.5 tag" From e8b8200ae738e308669fc8261399df923f53a05a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 11 Feb 2026 17:37:41 +0000 Subject: [PATCH 3/4] externpro 25.07.6-88-gb05bee7 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 8d2fdec..fd31fce 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.3 + uses: externpro/externpro/.github/workflows/build-linux.yml@25.07.6 with: cmake-workflow-preset: LinuxRelease secrets: inherit macos: - uses: externpro/externpro/.github/workflows/build-macos.yml@25.07.3 + uses: externpro/externpro/.github/workflows/build-macos.yml@25.07.6 with: cmake-workflow-preset: DarwinRelease secrets: inherit windows: - uses: externpro/externpro/.github/workflows/build-windows.yml@25.07.3 + uses: externpro/externpro/.github/workflows/build-windows.yml@25.07.6 with: cmake-workflow-preset: WindowsRelease secrets: inherit diff --git a/.github/workflows/xprelease.yml b/.github/workflows/xprelease.yml index 86b6f88..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.3 + 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 ad74463b67b3489119f85d819bb600430c314d63 Mon Sep 17 00:00:00 2001 From: smanders Date: Wed, 11 Feb 2026 10:41:19 -0700 Subject: [PATCH 4/4] Update release-tag.yml --- .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 1012c21..f0051bd 100644 --- a/.github/release-tag.yml +++ b/.github/release-tag.yml @@ -1,2 +1,2 @@ -tag: v2.7.6.5 -message: "externpro version 2.7.6.5 tag" +tag: xpv2.7.6.6 +message: "xpro version 2.7.6.6 tag"