File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -31131,6 +31131,11 @@ async function requestIssue(ticket) {
3113131131 authToken = jiraAccessToken;
3113231132 authMethod = 'Basic';
3113331133 }
31134+
31135+ if (ticket.board == 'dbeaver/dbeaver') {
31136+ authToken = core.getInput('curRepoToken');
31137+ }
31138+
3113431139 const response = await fetch(ticket.ticketUri(), {
3113531140 method: 'GET',
3113631141 headers: {
Original file line number Diff line number Diff line change @@ -38,6 +38,11 @@ async function requestIssue(ticket) {
3838 authToken = jiraAccessToken ;
3939 authMethod = 'Basic' ;
4040 }
41+
42+ if ( ticket . board == 'dbeaver/dbeaver' ) {
43+ authToken = core . getInput ( 'curRepoToken' ) ;
44+ }
45+
4146 const response = await fetch ( ticket . ticketUri ( ) , {
4247 method : 'GET' ,
4348 headers : {
You can’t perform that action at this time.
0 commit comments