Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Contribution guide updates for Quickstart authors #977

Draft
wants to merge 9 commits into
base: release-1.14
Choose a base branch
from
48 changes: 37 additions & 11 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ There are 4 types of issues:
Before you file an issue, make sure you've checked the following:

1. Is it the right repository?
- The Dapr project is distributed across multiple repositories. Check the list of [repositories](https://github.com/dapr) if you aren't sure which repo is the correct one.
- The Dapr project is distributed across multiple repositories. Check the list of [repositories](https://github.com/dapr) if you aren't sure which repo is the correct one. You can also ask for help in the [Dapr Discord](http://bit.ly/dapr-discord).
1. Check for existing issues
- Before you create a new issue, please do a search in [open issues](https://github.com/dapr/quickstarts/issues) to see if the issue or feature request has already been filed.
- If you find your issue already exists, make relevant comments and add your [reaction](https://github.com/blog/2119-add-reaction-to-pull-requests-issues-and-comments). Use a reaction:
Expand All @@ -45,22 +45,24 @@ Before you file an issue, make sure you've checked the following:
- Many changes to the Dapr runtime may require changes to the API. In that case, the best place to discuss the potential feature is the main [Dapr repo](https://github.com/dapr/dapr).
- Other examples could include bindings, state stores or entirely new components.

## Contributing to Dapr
## Contributing to Dapr Quickstarts

This section describes the guidelines for contributing code / docs to Dapr.
This section describes the guidelines for contributing code / docs to Dapr Quickstarts.

### Pull Requests

All contributions come through pull requests. To submit a proposed change, we recommend following this workflow:
All contributions come through pull requests. To submit a proposed change, follow this workflow:

1. Make sure there's an issue (bug or proposal) raised, which sets the expectations for the contribution you are about to make.
1. Fork the relevant repo and create a new branch
1. Create your change
- Code changes require tests
1. Update relevant documentation for the change
1. Commit and open a PR
1. Wait for the CI process to finish and make sure all checks are green
1. A maintainer of the project will be assigned, and you can expect a review within a few days
1. Assign the issue to yourself by commenting `/assign` in the issue. This triggers the [Dapr GitHub](https://docs.dapr.io/contributing/daprbot/) bot and it assigns the issue to you.
1. [Fork](https://github.com/dapr/quickstarts/fork) the Dapr Quickstarts repository into your GitHub account and create a new branch.
1. Create your change.
- Code changes require tests.
1. Update relevant documentation for the change.
1. Commit your changes and open a PR to the Dapr Quickstarts repository.
1. Wait for the CI process to finish and make sure all checks are green.
1. A maintainer of the project will be assigned, and you can expect a review within a few days.
1. Make sure the checks/test actions pass with your changes. See [Test authoring] for information around how this works and how to troubleshoot.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See [Test authoring] - Needs a URL reference


#### Use work-in-progress PRs for early feedback

Expand Down Expand Up @@ -176,6 +178,30 @@ A non-exclusive list of code that must be places in `vendor/`:

**Thank You!** - Your contributions to open source, large or small, make projects like this possible. Thank you for taking the time to contribute.

### Updating Quickstarts for new releases of Dapr
1. Create a PR to create a new branch of of `master` named `release-<version>`, for example `release-1.13`. This is the right place to put version dependent quickstarts, any stabilization work in the endgame of a release. [Example branch](https://github.com/dapr/quickstarts/tree/release-1.13).
2. Create a PR to change to the global Dapr runtime version in `/.github/env/global.env` to be used by Dapr CLI in all CI/CD actions and tests. [Example PR](https://github.com/dapr/quickstarts/pull/976)
3. Analyze checks/tests and push on maintainers to revert or address any breaks to existing quickstarts.
4. Ensure clean tests that match stability in `master`.

This branch is now ready to release and/or take incoming PRs for new Quickstarts.

### Adding a new Quickstart
TODO

### Authoring tests for new Quickstarts
TODO
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When this is a community call recording can add a link here


### Troubleshooting tests
TODO

### Cutting a release of quickstarts
1. Change to the release branch created above.
2. Make sure the matching runtime and CLI versions are set to match intent in `global.env` file
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you point to where this file is.

3. Create a new [Tag](https://github.com/dapr/quickstarts/tags) from this release branch in the form of v.M.mm-rcN, for example `v1.13-rc1`.
4. After the final RC is promoted to a full release, create a new Tag dropping the RC, e.g. `v1.13.0`.
5. Create a new [Release]() in the form of `v1.13` and reference the tag from last step. Note the releases have convention of no dot releases (e.g. v1.13.0) unless patched (e.g. v1.13.1). Include highlights and changelist in the release notes, and double check that contributors get credit.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Brackets are empty for Release
  • What are you saying here "Note the releases have convention of no dot releases (e.g. v1.13.0) unless patched (e.g. v1.13.1)" - do not understand the "no dot releases" reference here

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will clarify that sentence. good catch.


## Code of Conduct

This project has adopted the [Contributor Covenant Code of Conduct](https://github.com/dapr/community/blob/master/CODE-OF-CONDUCT.md)
3 changes: 2 additions & 1 deletion state_management/javascript/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,11 @@ sleep: 60
```bash
dapr run --app-id order-processor --resources-path ../../../resources/ -- npm start
```
<!-- END_STEP -->

2. Stop and cleanup the process

```bash
dapr stop --app-id order-processor
```
<!-- END_STEP -->

Loading