Created
April 10, 2018 14:12
-
-
Save loopiezlol/e00c35b0166b4eae891ec6b8d610f83c to your computer and use it in GitHub Desktop.
flow showing off how to clone, update and push to a git repo from an AWS lambda function
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
const fs = require('fs') | |
const path = require('path') | |
const process = require('process') | |
const { spawnSync } = require('child_process') | |
const { GITHUB_TOKEN, GITHUB_USERNAME, GITHUB_EMAIL } = process.env | |
// leaving this without https:// in order to reuse it when adding the remote | |
const gitRepositoryURL = 'github.com/owner/repo-name.git' | |
const repositoryName = 'repo-name' | |
function runCommand (commandString, options) { | |
const [command, ...args] = commandString.match(/(".*?")|(\S+)/g) | |
const cmd = spawnSync(command, args, options) | |
// you should probably obfuscate the credentials before logging | |
const errorString = cmd.stderr.toString() | |
if (errorString) { | |
throw new Error( | |
`Git command failed | |
${commandString} | |
${errorString}` | |
) | |
} | |
} | |
exports.handle = async function (event, context, callback) { | |
// install git binary | |
await require('lambda-git')() | |
// change the cwd to /tmp | |
process.chdir('/tmp') | |
// clone the repository and set it as the cwd | |
// sadly, clone doesn't support --porcelain | |
runCommand(`git clone --quiet https://${gitRepositoryURL}`) | |
process.chdir(path.join(process.cwd(), repositoryName)) | |
// make your modifications to the local repository | |
fs.appendFileSync( | |
path.join(process.cwd(), 'README.md'), | |
'\nAutomagically inserted line' | |
) | |
// update local git config with email and username (required) | |
runCommand(`git config --local user.email ${GITHUB_EMAIL}`) | |
runCommand(`git config --local user.name ${GITHUB_USERNAME}`) | |
// stage local files | |
runCommand('git add .') | |
// commit changes | |
runCommand('git commit -m "commit by :robot:"') | |
// replace the remote with an authenticated one | |
runCommand('git remote rm origin') | |
runCommand( | |
`git remote add origin https://${GITHUB_USERNAME}:${GITHUB_TOKEN}@${gitRepositoryURL}` | |
) | |
// push changes to remote | |
runCommand('git push --porcelain --set-upstream origin master') | |
// terminate the lambda | |
callback(null, 'bye') | |
} |
Nice, I figured that out yesterday. Node 8 it is!
…On Fri, Oct 18, 2019 at 2:59 PM dorian-coygo ***@***.***> wrote:
Hi David. I ran into the same issue. This won't work on node10. Need to
downgrade to node8.10 (that was the workaround I used)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<https://gist.github.com/e00c35b0166b4eae891ec6b8d610f83c?email_source=notifications&email_token=AA2WB34UY6M5WFO3LYAGSCTQPIWUXA5CNFSM4JBRIOS2YY3PNVWWK3TUL52HS4DFVNDWS43UINXW23LFNZ2KUY3PNVWWK3TUL5UWJTQAF2X34#gistcomment-3059646>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA2WB37OIWFDXGBI3UDHKDTQPIWUXANCNFSM4JBRIOSQ>
.
I just got this email from AWS, this will stop working soon if it requires node 8
We are contacting you as we have identified that your AWS Account currently has one or more Lambda functions using Node.js 8.10, which will reach its EOL at the end of 2019.
What’s happening?
The Node community has decided to end support for Node.js 8.x on December 31, 2019 [1]. From this date forward, Node.js 8.x will stop receiving bug fixes, security updates, and/or performance improvements. To ensure that your new and existing functions run on a supported and secure runtime, language runtimes that have reached their EOL are deprecated in AWS
People this line saved my life (aws lambda + nodjs)
const bug = spawnSync("ln", ["-s", "/usr/lib64/libpcre.so.1.2.0", "/tmp/git/usr/lib64/libpcre.so.0"])
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi David. I ran into the same issue. This won't work on node10. Need to downgrade to node8.10 (that was the workaround I used)