File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 5050 GIT_VERSION_TAG=${{ env.RELEASE_VERSION }}
5151 GIT_COMMIT_MESSAGE=${{ github.event.head_commit.message }}
5252 GIT_VERSION_HASH=${{ github.sha }}
53+ - name : Trigger getting-started tests
54+ # If build was successful and this is a release tag, dispatch a trade-executor-released
55+ # event, which is used as a workflow trigger in getting-started text.yml workflow.
56+ if : success() && github.event_name == 'push' && contains(github.ref, 'refs/tags/v')
57+ uses : peter-evans/repository-dispatch@v3
58+ with :
59+ # NOTE: The GETTING_STARTED_DISPATCH PAT will expire on 2026-09-16.
60+ # Generate a new fine-grained PAT with the following permissions on getting-started repo:
61+ # contents: read & write; metadata: read only
62+ token : ${{ secrets.GETTING_STARTED_DISPATCH }}
63+ repository : tradingstrategy-ai/getting-started
64+ event-type : trade-executor-released
65+ client-payload : ' {"image_tag": "${{ env.RELEASE_VERSION }}", "git_sha": "${{ github.sha }}"}'
You can’t perform that action at this time.
0 commit comments