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

Document how to release a new version #363

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Contributing

## Changelog

The changelog in this repo is managed manually in the `CHANGELOG.md` file.
PRs with a notable change should include an entry in the `HEAD (Unreleased)`
section of the file.

## Releasing

To release a new version of `pulumi-policy`, update the `CHANGELOG.md` file,
moving all items from the `HEAD (Unreleased)` section to a new section with
the new version number. Once this is merged, a new version will be published
when a tag of the form `v*.*.*` is pushed to the repo. To push the tag,
ask the `@release-bot` in the internal Pulumi Slack channel `#release-ops`
to do a release, for example:

```
@release-bot release pulumi-policy minor
```
Loading