Skip to content

Commit

Permalink
docs: add README
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Oct 8, 2021
1 parent a0d4cf4 commit 3164490
Showing 1 changed file with 43 additions and 1 deletion.
44 changes: 43 additions & 1 deletion README.md
@@ -1,7 +1,49 @@
# Release Please Action
# Conventional Release Labels

[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)

Automatically adds labels to pull requests based on [conventionalcommits.org](https://conventionalcommits.org), for the benifit of
[automatically generated release notes](https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes).

## Configuration

Create a `.github/workflows/conventional-label.yaml`:

```yaml
on:
pull_request:
types: [ opened, edited ]
name: conventional-release-labels
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: bcoe/conventional-release-labels@v1
```

Create a `.github/release.yaml`:

```yaml
changelog:
exclude:
labels:
- ignore-for-release
authors:
- octocat
categories:
- title: Breaking Changes 🛠
labels:
- breaking
- title: Exciting New Features 🎉
labels:
- feature
- title: Other Changes
labels:
- "*"
```

Enjoy!

## License

Apache Version 2.0

0 comments on commit 3164490

Please sign in to comment.