Merge pull request #362 from Mic92/dependabot-automation

ci/dependabot: set email
This commit is contained in:
Jörg Thalheim 2023-07-15 07:54:52 +01:00 committed by GitHub
commit 4ead528090
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
name: Update vendorSha256
name: Update vendorHash
on: pull_request
permissions:
@ -23,6 +23,8 @@ jobs:
# git push if we have a diff
if [[ -n $(git diff) ]]; then
git add default.nix
git config --global user.email "<49699333+dependabot[bot]@users.noreply.github.com>"
git config --global user.name "dependabot[bot]"
git commit -m "update vendorHash"
git push
fi