-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2987418
commit e376690
Showing
8 changed files
with
153 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Bug report | ||
about: Tell us about a bug you found | ||
title: "" | ||
labels: bug | ||
assignees: "" | ||
--- | ||
|
||
<!-- Please answer these questions before submitting your issue. Thanks! --> | ||
|
||
### What version are you using? | ||
|
||
### What did you do? | ||
|
||
### What happened? | ||
|
||
### What did you expect to see instead? |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Backend Project | ||
url: https://github.com/stellar/stellar-disbursement-platform-backend | ||
about: The backend API where this repository's application integrates with. | ||
- name: Stellar Laboratory | ||
url: https://laboratory.stellar.org/#?network=test | ||
about: The best place to experiment with the Stellar network. | ||
- name: Docker Images | ||
url: https://hub.docker.com/r/stellar/stellar-disbursement-platform-frontend | ||
about: Where to check the available Docker images that have been published. | ||
- name: Stellar Ecosystem Proposals (SEPs) | ||
url: https://github.com/stellar/stellar-protocol | ||
about: The SEPs implemented in this project are defined here. |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
name: Feature request | ||
about: Tell us what you'd like to see | ||
title: "Feature Request: " | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
<!-- Please answer these questions before submitting your issue. Thanks! --> | ||
|
||
### What problem does your feature solve? | ||
|
||
### What would you like to see? | ||
|
||
### What alternatives are there? |
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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
name: Release a New Version! | ||
about: Prepare a release to be launched | ||
title: "" | ||
labels: release | ||
--- | ||
|
||
<!-- Please Follow this checklist before making your release. Thanks! --> | ||
|
||
## Release Checklist | ||
|
||
> Attention: the examples below use the version `x.y.z` but you should update | ||
> them to use the version you're releasing. | ||
### Git Preparation | ||
|
||
- [ ] Decide on a version number based on the current version number and the | ||
common rules defined in [Semantic Versioning](https://semver.org). E.g. | ||
`x.y.z`. | ||
- [ ] Update this ticket name to reflect the new version number, following the | ||
pattern "Release `x.y.z`". | ||
- [ ] Cut a branch for the new release out of the `develop` branch, following | ||
the gitflow naming pattern `release/x.y.z`. | ||
|
||
### Code Preparation | ||
|
||
- [ ] Update the project's version in [package.json] accordingly. | ||
- [ ] Update the [CHANGELOG.md] with the new version number and release notes. | ||
- [ ] Run tests and linting, and make sure the version running in the default | ||
branch is working end-to-end. At least the minimal end-to-end manual tests | ||
is mandatory. | ||
- [ ] 🚨 DO NOT RELEASE before holidays or weekends! Mondays and Tuesdays are | ||
preferred. | ||
|
||
### Merging the Branches | ||
|
||
> 🚨 ATTENTION: in the following steps, do `merge commits` and NOT | ||
> `squash-and-merge`! | ||
- [ ] When the team is confident the release is stable, you'll need to create | ||
two pull requests: | ||
- [ ] `release/x.y.z -> main`: This PR should be merged with a merge commit. | ||
- [ ] `release/x.y.z -> develop`: this should be merged after the `main` | ||
branch is merged. This PR should be merged with a merge commit. | ||
|
||
### Publishing the Release | ||
|
||
- [ ] After the release branch is merged to `main`, create a new release on | ||
GitHub with the name `x.y.z` and the use the same changes from the | ||
[CHANGELOG.md] file. | ||
- [ ] The release should automatically publish a new version of the docker | ||
image to Docker Hub. Double check if that happened. | ||
|
||
[package.json]: | ||
https://github.com/stellar/stellar-disbursement-platform-frontend/blob/develop/package.json | ||
[CHANGELOG.md]: | ||
https://github.com/stellar/stellar-disbursement-platform-frontend/blob/develop/CHANGELOG.md |
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
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
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
export default { commitHash: "5386816" }; | ||
export default { commitHash: "5386816", version: "1.0.0-rc2" }; |