output destination repo
All checks were successful
Distribution check / Generated files check (push) Successful in -2m1s
Unit tests / Unit tests (latest) (push) Successful in -2m0s
Unit tests / Unit tests (lts/*) (push) Successful in -2m0s
Unit tests / Unit tests (lts/hydrogen) (push) Successful in -1m59s
NPM Audit Check / Check NPM audit (push) Successful in -2m10s

This commit is contained in:
2025-11-07 13:24:51 -05:00
parent a8f1124f4f
commit 6c239c337e
4 changed files with 5 additions and 1 deletions

View File

@@ -29,6 +29,8 @@ outputs:
description: whether a move is required or not description: whether a move is required or not
delete: delete:
description: whether a deletion is required or not description: whether a deletion is required or not
destination:
description: destination repo
runs: runs:
using: 'node16' using: 'node16'

View File

@@ -60,5 +60,6 @@ async function doParse() {
core.setOutput('build', diff.build); core.setOutput('build', diff.build);
core.setOutput('move', diff.move.length > 0); core.setOutput('move', diff.move.length > 0);
core.setOutput('delete', diff.delete.length > 0); core.setOutput('delete', diff.delete.length > 0);
core.setOutput('destination', diff.actions.addRepo);
} }
//# sourceMappingURL=router.js.map //# sourceMappingURL=router.js.map

File diff suppressed because one or more lines are too long

View File

@@ -77,4 +77,5 @@ async function doParse() {
core.setOutput('build', diff.build); core.setOutput('build', diff.build);
core.setOutput('move', diff.move.length > 0); core.setOutput('move', diff.move.length > 0);
core.setOutput('delete', diff.delete.length > 0); core.setOutput('delete', diff.delete.length > 0);
core.setOutput('destination', diff.actions.addRepo);
} }