-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
640 additions
and
1,370 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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`; | ||
|
Oops, something went wrong.