Skip to content

Commit

Permalink
Update variables.js
Browse files Browse the repository at this point in the history
  • Loading branch information
tdonaworth authored Jul 20, 2021
1 parent 28bdc37 commit 28c7859
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/variables.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const DRY_RUN = toolkit.input.tobool( core.getInput( 'DRY_RUN' )
const PULL_REQUEST = toolkit.input.tobool( core.getInput( 'PULL_REQUEST' ) );
const SKIP_CI = toolkit.input.tobool( core.getInput( 'SKIP_CI' ) );
const GITHUB_TOKEN = core.getInput( 'GITHUB_TOKEN' );
const GIT_URL = core.getInput( 'GIT_URL' );
const RAW_REPOSITORIES = core.getInput( 'REPOSITORIES' );
const COMMIT_MESSAGE = core.getInput( 'COMMIT_MESSAGE' );
const RAW_WORKFLOW_FILES = core.getInput( 'WORKFLOW_FILES' );
Expand All @@ -23,6 +24,7 @@ module.exports = {
COMMIT_EACH_FILE,
DRY_RUN,
GITHUB_TOKEN,
GIT_URL,
RAW_REPOSITORIES,
PULL_REQUEST,
RAW_WORKFLOW_FILES,
Expand All @@ -33,4 +35,4 @@ module.exports = {
GITHUB_WORKSPACE,
SKIP_CI,
COMMIT_MESSAGE
};
};

0 comments on commit 28c7859

Please sign in to comment.