diff --git a/.github/workflows/sdk-insertion-bump.yml b/.github/workflows/sdk-insertion-bump.yml new file mode 100644 index 00000000000..1e812f07dfe --- /dev/null +++ b/.github/workflows/sdk-insertion-bump.yml @@ -0,0 +1,35 @@ +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@v3 + + - name: Parse commit + shell: pwsh + id: commit_title + run: | + Write-Host "Commit message is $Env:COMMIT_MESSAGE" + $title = ($Env:COMMIT_MESSAGE -split '\n')[0] + "COMMIT_TITLE=$title" >> $env:GITHUB_OUTPUT + env: + COMMIT_MESSAGE: "${{ github.event.head_commit.message }}" + + - name: 'Update remote repository' + uses: peter-evans/repository-dispatch@v2 + with: + token: ${{ secrets.SERVICEACCOUNT_PAT }} + event-type: 'sdk_insertion' + repository: 'xamarin/sdk-insertions' + client-payload: '{"repository": "xamarin/xamarin-android", "branch": "${{ github.ref_name }}", "commit": "${{ github.sha }}", "commit_message": "${{ steps.commit_title.outputs.COMMIT_TITLE }}"}' + +