From 0902e596abdb0a88f05724e4ce072d99c29ce0ea Mon Sep 17 00:00:00 2001 From: J Scott Smith Date: Mon, 10 Aug 2026 23:34:55 -0700 Subject: [PATCH 1/2] ci: dispatch docs generation to developer-resources-site main Point build-docs workflow_dispatch at main now that the docs site integration branch is main instead of master. --- .github/workflows/notify-docs-on-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notify-docs-on-release.yml b/.github/workflows/notify-docs-on-release.yml index cb74eeec..d076296f 100644 --- a/.github/workflows/notify-docs-on-release.yml +++ b/.github/workflows/notify-docs-on-release.yml @@ -23,7 +23,7 @@ jobs: run: | gh api --method POST \ /repos/${{ github.repository_owner }}/developer-resources-site/actions/workflows/build-docs.yml/dispatches \ - -f ref="master" \ + -f ref="main" \ -F inputs[source_repo]="${{ github.repository }}" \ -F inputs[release_tag]="${{ github.event.release.tag_name }}" \ -F inputs[asset_name]="${{ vars.DOCS_ASSET_NAME }}" From e84d990a2175d28b33b590ff207c3bf540b722ae Mon Sep 17 00:00:00 2001 From: Adam Shapiro Date: Tue, 11 Aug 2026 09:02:10 -0400 Subject: [PATCH 2/2] Fixed CI trigger to allow branches with slashes. --- .github/workflows/release_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index c949cc6e..730bf486 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -5,7 +5,7 @@ on: push: # Build on a push to any branch. branches: - - '*' + - '**' # Build on a push of any tag named v* (v1.0, etc.) and generate a release. tags: - 'v*'