forked from dotnet/android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into native-profiling-and-debugging
* main: [marshal methods] Properly support arrays of arrays (dotnet#7707) Bump to dotnet/installer@9962c6a 8.0.100-alpha.1.23063.11 (dotnet#7677) [Actions] Add action to bump the hash used for the unified pipeline (dotnet#7712) Bump to xamarin/xamarin-android-tools/main@099fd95 (dotnet#7709) [ci] Move build stages into yaml templates (dotnet#7553) [Xamarin.Android.Build.Tasks] fix NRE in `<GenerateResourceCaseMap/>` (dotnet#7716) [ci] Pass token when building Designer tests (dotnet#7715)
- Loading branch information
Showing
34 changed files
with
535 additions
and
384 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
xamarin/monodroid:main@c0c933b7a5286c0babecb165c0676c32f5e44092 | ||
xamarin/monodroid:main@2b9c9d01820c8df4541157f6b6116852eba73350 | ||
mono/mono:2020-02@6dd9def57ce969ca04a0ecd9ef72c0a8f069112d |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }}"}' | ||
|
||
|
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
Oops, something went wrong.