make pushes to origin trigger drone pipeline

This commit is contained in:
viktorbarzin 2021-03-16 23:43:10 +00:00
parent ce2b79550a
commit 1f67b73a96
No known key found for this signature in database
GPG key ID: 0EB088298288D958

View file

@ -75,7 +75,7 @@ func run() error {
return errors.Wrapf(err, "failed to add vpn client")
}
// commit changes
if _, err = worktree.Commit("Added new VPN client config (still testing) [CI SKIP]", &git.CommitOptions{All: true, Author: &object.Signature{Name: "Webhook Handler Bot"}}); err != nil {
if _, err = worktree.Commit("Added new VPN client config", &git.CommitOptions{All: true, Author: &object.Signature{Name: "Webhook Handler Bot"}}); err != nil {
return errors.Wrapf(err, "failed to commit")
}
default: