Skip to content

Commit d2f90e6

Browse files
committed
fix 2nd push
1 parent a5d650d commit d2f90e6

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

.github/workflows/report_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ jobs:
5454
uses: ./
5555
with:
5656
repository: test-action-dir
57-
# branch: test-action
57+
branch: test-action

dist/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2728,7 +2728,6 @@ try {
27282728
}
27292729
await (0,_src_spawnProcess_js__WEBPACK_IMPORTED_MODULE_2__/* .spawnProcess */ .y)('git', ['add', '.'], repository);
27302730
const diff = await (0,_src_spawnProcess_js__WEBPACK_IMPORTED_MODULE_2__/* .spawnProcess */ .y)('git', ['diff', '--staged', '--name-only'], repository);
2731-
console.log('diff', diff);
27322731
if (diff.trim() === '') {
27332732
console.log('Working tree is empty. Nothing to commit.');
27342733
}

index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ try {
2727

2828
await spawnProcess('git', ['add', '.'], repository)
2929
const diff = await spawnProcess('git', ['diff', '--staged', '--name-only'], repository)
30-
console.log('diff', diff)
3130
if (diff.trim() === '') {
3231
console.log('Working tree is empty. Nothing to commit.')
3332
} else {

0 commit comments

Comments
 (0)