@@ -165,6 +165,7 @@ The \`tag-git\` workflow run [was started](https://url-to-tag-git/)
165
165
166
166
git-artifacts-x86_64 run already exists at <url-to-existing-x86_64-run>.
167
167
The \`git-artifacts-i686\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
168
+ The \`git-artifacts-aarch64\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
168
169
` )
169
170
return { html_url : 'https://github.com/git-for-windows/git/pull/4322#issuecomment-1450703020' }
170
171
}
@@ -751,6 +752,7 @@ test('a completed `tag-git` run triggers `git-artifacts` runs', async () => {
751
752
expect ( context . res ) . toEqual ( {
752
753
body : `git-artifacts-x86_64 run already exists at <url-to-existing-x86_64-run>.
753
754
The \`git-artifacts-i686\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
755
+ The \`git-artifacts-aarch64\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
754
756
` ,
755
757
headers : undefined ,
756
758
status : undefined
@@ -819,20 +821,26 @@ The \`tag-git\` workflow run [was started](dispatched-workflow-tag-git.yml)`,
819
821
820
822
The \`git-artifacts-x86_64\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
821
823
The \`git-artifacts-i686\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
824
+ The \`git-artifacts-aarch64\` workflow run [was started](dispatched-workflow-git-artifacts.yml).
822
825
` ,
823
826
headers : undefined ,
824
827
status : undefined
825
828
} )
826
829
expect ( mockGetInstallationAccessToken ) . toHaveBeenCalled ( )
827
830
expect ( mockGitHubApiRequestAsApp ) . not . toHaveBeenCalled ( )
828
- expect ( dispatchedWorkflows ) . toHaveLength ( 2 )
831
+ expect ( dispatchedWorkflows ) . toHaveLength ( 3 )
829
832
expect ( dispatchedWorkflows [ 0 ] . html_url ) . toEqual ( 'dispatched-workflow-git-artifacts.yml' )
830
833
expect ( dispatchedWorkflows [ 0 ] . payload . inputs ) . toEqual ( {
831
- architecture : 'i686 ' ,
834
+ architecture : 'aarch64 ' ,
832
835
tag_git_workflow_run_id : "341"
833
836
} )
834
837
expect ( dispatchedWorkflows [ 1 ] . html_url ) . toEqual ( 'dispatched-workflow-git-artifacts.yml' )
835
838
expect ( dispatchedWorkflows [ 1 ] . payload . inputs ) . toEqual ( {
839
+ architecture : 'i686' ,
840
+ tag_git_workflow_run_id : "341"
841
+ } )
842
+ expect ( dispatchedWorkflows [ 2 ] . html_url ) . toEqual ( 'dispatched-workflow-git-artifacts.yml' )
843
+ expect ( dispatchedWorkflows [ 2 ] . payload . inputs ) . toEqual ( {
836
844
architecture : 'x86_64' ,
837
845
tag_git_workflow_run_id : "341"
838
846
} )
0 commit comments