From 77c31402d38ea85fbad76a100fe05f9b6b56c068 Mon Sep 17 00:00:00 2001 From: Eduardo Blanco Date: Fri, 3 Oct 2025 15:25:35 +0200 Subject: [PATCH 1/2] FEAT: Add GitHub Actions workflow to notify PyAEDT examples repo on release --- .github/workflows/examples_tag_release.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/examples_tag_release.yml diff --git a/.github/workflows/examples_tag_release.yml b/.github/workflows/examples_tag_release.yml new file mode 100644 index 00000000000..6a68f7b884a --- /dev/null +++ b/.github/workflows/examples_tag_release.yml @@ -0,0 +1,19 @@ +name: Notify PyAEDT examples repo + +on: + release: + types: [published] + +jobs: + Dispatch: + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - name: Send dispatch to PyAEDT examples repo + uses: peter-evans/repository-dispatch@v4 + with: + token: ${{ secrets.PYAEDT_EXAMPLES_REPO_TOKEN }} + repository: ansys/pyaedt-examples + event-type: release_tag + client-payload: '{"tag": "${{ github.event.release.tag_name }}"}' From dccfb40ffbbf2feb8b2a00083b265ecd1724096e Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Fri, 3 Oct 2025 13:28:00 +0000 Subject: [PATCH 2/2] chore: adding changelog file 6731.added.md [dependabot-skip] --- doc/changelog.d/6731.added.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/changelog.d/6731.added.md diff --git a/doc/changelog.d/6731.added.md b/doc/changelog.d/6731.added.md new file mode 100644 index 00000000000..20ed13c7155 --- /dev/null +++ b/doc/changelog.d/6731.added.md @@ -0,0 +1 @@ +Add GitHub Actions workflow to notify PyAEDT examples repo on release