Skip to content

Commit 5406604

Browse files
committed
Release
1 parent ea7ce9f commit 5406604

14 files changed

+247
-203
lines changed

lib/git.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function generateBranch(action) {
6262
yield switchToBaseBranch(action);
6363
yield execute_1.execute(`git checkout --orphan ${action.branch}`, action.workspace, action.silent);
6464
yield execute_1.execute(`git reset --hard`, action.workspace, action.silent);
65-
yield execute_1.execute(`git commit --allow-empty -m "Initial ${action.branch} commit"`, action.workspace, action.silent);
65+
yield execute_1.execute(`git commit --no-verify --allow-empty -m "Initial ${action.branch} commit"`, action.workspace, action.silent);
6666
yield execute_1.execute(`git push --force ${action.repositoryPath} ${action.branch}`, action.workspace, action.silent);
6767
yield execute_1.execute(`git fetch`, action.workspace, action.silent);
6868
core_1.info(`Created the ${action.branch} branch… 🔧`);
@@ -137,14 +137,14 @@ function deploy(action) {
137137
// Commits to GitHub.
138138
yield execute_1.execute(`git add --all .`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
139139
yield execute_1.execute(`git checkout -b ${temporaryDeploymentBranch}`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
140-
yield execute_1.execute(`git commit -m "${commitMessage}" --quiet`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
140+
yield execute_1.execute(`git commit -m "${commitMessage}" --quiet --no-verify`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
141141
yield execute_1.execute(`git push --force ${action.repositoryPath} ${temporaryDeploymentBranch}:${action.branch}`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
142142
core_1.info(`Changes committed to the ${action.branch} branch… 📦`);
143143
if (action.singleCommit) {
144144
yield execute_1.execute(`git fetch ${action.repositoryPath}`, action.workspace, action.silent);
145145
yield execute_1.execute(`git checkout --orphan ${action.branch}-temp`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
146146
yield execute_1.execute(`git add --all .`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
147-
yield execute_1.execute(`git commit -m "${commitMessage}" --quiet`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
147+
yield execute_1.execute(`git commit -m "${commitMessage}" --quiet --no-verify`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
148148
yield execute_1.execute(`git branch -M ${action.branch}-temp ${action.branch}`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
149149
yield execute_1.execute(`git push origin ${action.branch} --force`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
150150
core_1.info('Cleared git history… 🚿');

node_modules/lodash/README.md

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/lodash/core.js

+2-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/lodash/core.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/lodash/lodash.js

+71-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)