1
0
Fork 0
mirror of https://github.com/veggiemonk/awesome-docker.git synced 2025-04-20 16:08:03 +02:00

GITHUB_ env vars are reserved

This commit is contained in:
Julien Bisconti 2019-01-25 19:43:48 +01:00
parent 634914656c
commit 00a012b6d7
No known key found for this signature in database
GPG key ID: 62772C6698F736CB
2 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ workflow "New workflow" {
action "skip-commit" {
uses = "veggiemonk/skip-commit@master"
env = {
COMMIT_FILTER = "\\[skip-ci\\]"
COMMIT_FILTER = "skip-ci"
}
}
@ -43,6 +43,6 @@ action "push changes" {
env = {
GIT_EMAIL = "alex.blaine@layder.io"
GIT_USERNAME = "veggiemonk-bot"
GITHUB_USER = "veggiemonk"
GIT_USER = "veggiemonk"
}
}

View file

@ -21,6 +21,6 @@ echo "Commiting files"
git commit -m "Automated update repository metadata [skip ci]"
echo "Pushing changes"
git push https://"$GITHUB_USER:$GITHUB_TOKEN"@github.com/veggiemonk/awesome-docker master >/dev/null 2>&1
git push https://"$GIT_USER:$GITHUB_TOKEN"@github.com/veggiemonk/awesome-docker master >/dev/null 2>&1
echo "Done."