Skip to content

Commit

Permalink
SCALRCORE-29806 changed git push stratagy
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyrskliar committed Jan 18, 2024
1 parent 2fdba79 commit da389be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/update-app-version/index.dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -18491,7 +18491,7 @@ async function pushChanges () {
await exec.exec('git config user.email "github-actions[bot]@users.noreply.github.com"')
await exec.exec('git add charts')
await exec.exec(`git commit -m "Sync appVersion: ${appVersion}`)
await exec.exec(`git push`)
await exec.exec(`git push origin master`)
}

async function helmDocs () {
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/update-app-version/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async function pushChanges () {
await exec.exec('git config user.email "github-actions[bot]@users.noreply.github.com"')
await exec.exec('git add charts')
await exec.exec(`git commit -m "Sync appVersion: ${appVersion}`)
await exec.exec(`git push`)
await exec.exec(`git push origin master`)
}

async function helmDocs () {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-push-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test push master
on:
push:
branches:
- SCALRCORE-29086
- SCALRCORE-29806

jobs:
test-push-master:
Expand Down

0 comments on commit da389be

Please sign in to comment.