Skip to content

Commit

Permalink
chore: update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
sinedied committed Jul 18, 2024
1 parent 433ba6a commit 6ca0bb0
Show file tree
Hide file tree
Showing 4 changed files with 640 additions and 1,370 deletions.
4 changes: 2 additions & 2 deletions lib/git.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const commitTitle = `Update published articles`;
const commitName = process.env.GIT_COMMITTER_NAME || `dev.to bot`;
const commitEmail =
process.env.GIT_COMMITTER_EMAIL || `[email protected]`;
const git = (command, args, flags = []) =>
getExecOutput('git', [...flags, command, ...args]);
const git = (command, arguments_, flags = []) =>
getExecOutput('git', [...flags, command, ...arguments_]);

const getRepositoryUrl = (repository, githubToken) =>
`https://${githubToken}@github.com/${repository.user}/${repository.name}.git`;
Expand Down
Loading

0 comments on commit 6ca0bb0

Please sign in to comment.