generate-changelog.sh 280 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 #!/bin/bash git checkout ${GITHUB_HEAD_REF} git config --global user.email "action@github.com" git config --global user.name "GitHub Action" npm run generate-changelog git add -A git commit -m "(Changelog CI) Added Changelog" git push -u origin ${GITHUB_HEAD_REF}