Add UseInterpreter as part of the check for DynamicCodeSupport (#20912) #5170
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Notify release branch change | |
on: | |
# trigger for main and release branches. | |
push: | |
branches: | |
- main | |
- release/* | |
jobs: | |
pingRemote: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Ping remote repository' | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
token: ${{ secrets.SERVICEACCOUNT_PAT }} | |
event-type: ping-mirror | |
repository: ${{ secrets.ORG }}/${{ secrets.REPO }} | |
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' | |