File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ const configureInput = (
2929 jest
3030 . spyOn ( core , 'getInput' )
3131 . mockImplementation ( ( name : string , ...opts ) => mockInput [ name ] ) ;
32+ jest
33+ . spyOn ( core , 'getBooleanInput' )
34+ . mockImplementation ( ( name : string , ...opts ) => mockInput [ name ] ) ;
3235} ;
3336
3437afterAll ( ( ) => jest . restoreAllMocks ( ) ) ;
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export async function run() {
1616 const token = core . getInput ( 'repo-token' ) ;
1717 const configPath = core . getInput ( 'configuration-path' , { required : true } ) ;
1818 const syncLabels = ! ! core . getInput ( 'sync-labels' ) ;
19- const dot = ! ! core . getInput ( 'dot' ) ;
19+ const dot = core . getBooleanInput ( 'dot' ) ;
2020
2121 const prNumber = getPrNumber ( ) ;
2222 if ( ! prNumber ) {
You can’t perform that action at this time.
0 commit comments