ignore return code
This commit is contained in:
parent
76979c4272
commit
205aea6a3e
2 changed files with 2 additions and 2 deletions
|
@ -122,7 +122,7 @@ export async function createOrUpdateBranch(
|
|||
if (await git.isDirty(true)) {
|
||||
core.info('Uncommitted changes found. Adding a commit.')
|
||||
for (const filePattern of filePatterns) {
|
||||
await git.exec(['add', filePattern])
|
||||
await git.exec(['add', filePattern], true)
|
||||
}
|
||||
const params = ['-m', commitMessage]
|
||||
if (signoff) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue