@@ -1536,6 +1536,8 @@ export class GitHubRepository extends Disposable {
15361536 state : this . mapStateAsCheckState ( context . conclusion ) ,
15371537 description : context . title ,
15381538 context : context . name ,
1539+ workflowName : context . checkSuite ?. workflowRun ?. workflow . name ,
1540+ event : context . checkSuite ?. workflowRun ?. event ,
15391541 targetUrl : context . detailsUrl ,
15401542 isRequired : context . isRequired ,
15411543 } ;
@@ -1549,6 +1551,8 @@ export class GitHubRepository extends Disposable {
15491551 state : this . mapStateAsCheckState ( context . state ) ,
15501552 description : context . description ,
15511553 context : context . context ,
1554+ workflowName : undefined ,
1555+ event : undefined ,
15521556 targetUrl : context . targetUrl ,
15531557 isRequired : context . isRequired ,
15541558 } ;
@@ -1571,6 +1575,8 @@ export class GitHubRepository extends Disposable {
15711575 state : CheckState . Pending ,
15721576 description : vscode . l10n . t ( 'Waiting for status to be reported' ) ,
15731577 context : context ,
1578+ workflowName : undefined ,
1579+ event : undefined ,
15741580 targetUrl : prUrl ,
15751581 isRequired : true
15761582 } ) ;
0 commit comments