Skip to content

Commit

Permalink
chore: update github setup
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-zaremba authored and udit-gulati committed Dec 2, 2024
1 parent 2be2fd1 commit c5c97d2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
15 changes: 10 additions & 5 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,20 @@ about: Create a proposal to request a feature

## Summary

## Problem Definition

<!-- Why do we need this feature?
What problems may be addressed by introducing this feature?
What benefits does Tendermint stand to gain by including this feature?
Are there any disadvantages of including this feature? -->

## Context

#### Why do we need this feature? What problems may be addressed by introducing this feature?

#### What are the benefits by including this feature?

#### Are there any disadvantages of including this feature?

## Proposal



---

## For Admin Use
Expand Down
13 changes: 12 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Description

closes: #XXXX
Closes: #XXXX

---

Expand All @@ -14,6 +14,17 @@ please add links to any relevant follow up issues._
I have...

- [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
<!-- * `feat`: A new feature
* `fix`: A bug fix
* `docs`: Documentation only changes
* `style`: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
* `refactor`: A code change that neither fixes a bug nor adds a feature
* `perf`: A code change that improves performance
* `test`: Adding missing tests or correcting existing tests
* `build`: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
* `ci`: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
* `chore`: Other changes that don't modify src or test files
* `revert`: Reverts a previous commit -->
- [ ] added `!` to the type prefix if API or client breaking change
- [ ] added appropriate labels to the PR
- [ ] targeted the correct branch (see [PR Targeting](https://github.com/umee-network/umee/blob/main/CONTRIBUTING.md#pr-targeting))
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ out:
build: out .git/hooks/pre-commit
go build -o ./out ./cmd/*

run:
start:
@if [ ! -f .env ]; then echo "Create .env file by copying and updating .env.example"; exit 1; fi
@./out/native-ika start --block 8713586

Expand Down Expand Up @@ -39,7 +39,7 @@ lint-fix-go-all:
@gofmt -w -s -l .


.PHONY: build run clean setup
.PHONY: build start clean setup
.PHONY: lint lint-all lint-fix-all lint-fix-go-all

###############################################################################
Expand Down

0 comments on commit c5c97d2

Please sign in to comment.