From a047e85d8953c4ee9ed327079876405dfcc74fb3 Mon Sep 17 00:00:00 2001 From: Manuel de la Pena Date: Sun, 13 Nov 2022 18:33:28 -0500 Subject: [PATCH 1/2] [DevOps] Foward forgetten parameters. --- tools/devops/automation/templates/sign-and-notarized/funnel.yml | 2 ++ tools/devops/automation/templates/windows/stage.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/tools/devops/automation/templates/sign-and-notarized/funnel.yml b/tools/devops/automation/templates/sign-and-notarized/funnel.yml index d24504dbd0bf..cccc358552a1 100644 --- a/tools/devops/automation/templates/sign-and-notarized/funnel.yml +++ b/tools/devops/automation/templates/sign-and-notarized/funnel.yml @@ -156,6 +156,8 @@ jobs: steps: - template: upload-azure.yml parameters: + repositoryAlias: ${{ parameters.repositoryAlias }} + commit: ${{ parameters.commit }} enableDotnet: ${{ parameters.enableDotnet }} sbomFilter: '*.nupkg;*.pkg;*.msi' azureStorage: ${{ parameters.azureStorage }} diff --git a/tools/devops/automation/templates/windows/stage.yml b/tools/devops/automation/templates/windows/stage.yml index a4a30c03ac58..fec3b8b7f5ed 100644 --- a/tools/devops/automation/templates/windows/stage.yml +++ b/tools/devops/automation/templates/windows/stage.yml @@ -78,5 +78,7 @@ stages: steps: - template: build.yml parameters: + repositoryAlias: ${{ parameters.repositoryAlias }} + commit: ${{ parameters.commit }} isPR: ${{ parameters.isPR }} statusContext: ${{ parameters.statusContext }} From 5f23f1e6f1220f6ccf018834c4a8c908dd595cfa Mon Sep 17 00:00:00 2001 From: GitHub Actions Autoformatter Date: Sun, 13 Nov 2022 23:38:35 +0000 Subject: [PATCH 2/2] Auto-format source code --- tests/monotouch-test/AudioUnit/AudioUnitTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/monotouch-test/AudioUnit/AudioUnitTest.cs b/tests/monotouch-test/AudioUnit/AudioUnitTest.cs index 3471c104e88e..5827f4b50d03 100644 --- a/tests/monotouch-test/AudioUnit/AudioUnitTest.cs +++ b/tests/monotouch-test/AudioUnit/AudioUnitTest.cs @@ -84,7 +84,7 @@ public void CopyIconTest () } [Test] - public unsafe void TestSizeOf() + public unsafe void TestSizeOf () { Assert.AreEqual (sizeof (AudioFormat), Marshal.SizeOf (typeof (AudioFormat))); Assert.AreEqual (sizeof (AudioValueRange), Marshal.SizeOf (typeof (AudioValueRange)));