-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
💚 not to add go.mod & go.sum when /format runs
Signed-off-by: Rintaro Okamura <[email protected]>
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -435,7 +435,7 @@ jobs: | |
sudo make prettier/install | ||
# sudo make dockfmt/install | ||
echo "Update license headers and format go codes/yaml/Dockerfile" | ||
echo "Update license headers and format go codes/yaml" | ||
make update/goimports | ||
make format/yaml | ||
|
@@ -448,8 +448,8 @@ jobs: | |
git config --global user.name "vdaas-ci" | ||
git config --global user.email "[email protected]" | ||
git add . | ||
git commit --signoff -m ":robot: Update license headers and formatting go codes" | ||
git add cmd example hack internal k8s pkg | ||
git commit --signoff -m ":robot: Update license headers / Format go codes and yaml files" | ||
git remote set-url origin "https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" | ||
|