Skip to content

Commit

Permalink
Merge pull request #13 from kyagi/fix-mode-on-github-actions
Browse files Browse the repository at this point in the history
Fix mode when run on github actions
  • Loading branch information
kyagi authored Feb 3, 2022
2 parents f722491 + 536254e commit 425e028
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23696,7 +23696,7 @@ module.exports = class Shamshir {
this._repo = core.getInput('repo').split('/')[1]
this._label = core.getInput('label')
this._quorum = core.getInput('quorum')
this._mode = false
this._mode = "live"
} else {
// TODO: error-handing, TBD
// Neither stand-alone nor github actions
Expand Down
2 changes: 1 addition & 1 deletion src/shamshir.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = class Shamshir {
this._repo = core.getInput('repo').split('/')[1]
this._label = core.getInput('label')
this._quorum = core.getInput('quorum')
this._mode = false
this._mode = "live"
} else {
// TODO: error-handing, TBD
// Neither stand-alone nor github actions
Expand Down

0 comments on commit 425e028

Please sign in to comment.