Skip to content

Commit b61d9df

Browse files
committed
feat: add conventionalcommits workflow
1 parent 4d5c3dc commit b61d9df

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Conventional Commits
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
types: [opened, reopened, edited, synchronize]
7+
8+
jobs:
9+
build:
10+
name: Conventional Commits
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
15+
- uses: webiny/action-conventional-commits@v1.1.0

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,14 @@ In short (this is for `zsh`, adapt to your shell as needed):
4949
```
5050
bean-extract my.import -f <(echo 'plugin "beancount.plugins.auto_accounts"'; cat ${INGEST_ROOT}/../source/*) $file
5151
```
52+
53+
## Contributions
54+
55+
Features, fixes, and improvements welcome. Remember:
56+
- Feel free to send send pull requests. Please include unit tests
57+
- For larger changes or changes that might need discussion, please reach out and discuss
58+
first to save time (open an issue)
59+
- Please squash your commits (reasonably)
60+
- Use [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) for commit messages
61+
62+
Thank you for contributing!

0 commit comments

Comments
 (0)