Skip to content

Commit

Permalink
Merge pull request meshery#2655 from ramrodo/fix-release-drafter
Browse files Browse the repository at this point in the history
Sets the pull request base branch to the github action
  • Loading branch information
leecalcote authored Apr 2, 2021
2 parents 3c1c1c5 + 80caf69 commit 2f00f8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
signoff: true
branch: docs/automated-release-notes
delete-branch: true
base: master
title: '[Docs] Release Notes for Meshery ${{ steps.release_drafter.outputs.tag_name }}'
body: |
An auto-generated pull request to document release notes for Meshery ${{ steps.release_drafter.outputs.tag_name }}
Expand Down
2 changes: 1 addition & 1 deletion mesheryctl/pkg/utils/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ func PreReqCheck(subcommand string, focusedContext string) error {

if err != nil {
log.Info("Kubernetes unreachable.")
return errors.Wrapf(err, "Kubernetes is not available. Verify Kubernetes is up, reachable, and a valid cert / token is available.", subcommand)
return errors.Wrap(err, "Kubernetes is not available. Verify Kubernetes is up, reachable, and a valid cert / token is available.")
}
} else {
return errors.New(fmt.Sprintf("%v platform not supported", currCtx.Platform))
Expand Down

0 comments on commit 2f00f8b

Please sign in to comment.