Skip to content

Commit

Permalink
fix: add skip ci instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
feerglas committed Aug 24, 2020
1 parent 512b97b commit dca9a25
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions ci/gitPushProperties.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,12 @@ const getAllFiles = (dirPath, arrayOfFiles) => {

(async () => {
try {
const commitMessage = argv(process.argv.slice(2));

console.log(commitMessage);

console.log(commitMessage['m']);

const commitMessage = argv(process.argv.slice(2))['m'];
const propertiesFiles = getAllFiles('./properties');

// git add and commit. Files will be pushed during semantic-release
await git.add(propertiesFiles);
await git.commit('fix: figma library update [skip ci]');
await git.commit(`${commitMessage} [skip ci]`);

shell.exit(0);
} catch (e) {
Expand Down

0 comments on commit dca9a25

Please sign in to comment.