You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,6 @@ Thank you very much for contributing to this project!
4
4
5
5
Please make sure to have a look at the [contributors guide](https://github.com/amannn/action-semantic-pull-request/blob/master/CONTRIBUTORS.md) so you can test your changes.
6
6
7
-
For any non-trivial changes, please include a link to a workflow where you tested the current state of this pull request (see contributors guide).
7
+
For any non-trivial changes, please include a link to a workflow where you've tested the current state of this pull request (see contributors guide).
Copy file name to clipboardexpand all lines: CONTRIBUTORS.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -13,5 +13,5 @@ To do this, please follow this process:
13
13
1. Fork the repo.
14
14
2. Create a PR in **your own repo**.
15
15
3. The "Lint PR title preview (current branch)" workflow will run the new version and will help you validate the change.
16
-
4. Create a PR to this repo with the changes. In this case the preview workflow will fail, but we'll know that it works since you tested it in the fork. Please include a include a link to a workflow where you tested the current state of this pull request.
16
+
4. Create a PR to this repo with the changes. In this case the preview workflow will fail, but we'll know that it works since you've tested it in the fork. Please include a include a link to a workflow where you've tested the current state of this pull request.
17
17
5. Don't run `npm run build` to update the `dist` folder as it will be generated on CI during the build
Copy file name to clipboardexpand all lines: README.md
+19-19
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
1
# action-semantic-pull-request
2
2
3
-
This is a [GitHub Action](https://github.com/features/actions) that ensures your PR title matches the [Conventional Commits spec](https://www.conventionalcommits.org/).
3
+
This is a GitHub Action that ensures your PR title matches the [Conventional Commits spec](https://www.conventionalcommits.org/). The typical use case is to use this in combination with a tool like [semantic-release](https://github.com/semantic-release/semantic-release) to automate releases.
4
4
5
-
The typical use case is to use this in combination with a tool like [semantic-release](https://github.com/semantic-release/semantic-release) to automate releases.
5
+
Used by: [Apache](https://github.com/apache/pulsar) · [Vercel](https://github.com/vercel/ncc) · [Microsoft](https://github.com/microsoft/SynapseML) · [Firebase](https://github.com/firebase/flutterfire) · [AWS](https://github.com/aws-ia/terraform-aws-eks-blueprints) · [Electron](https://github.com/electron/forge) – and many more.
6
6
7
-
## Validation
7
+
## Examples
8
8
9
-
Examples for valid PR titles:
10
-
- fix: Correct typo.
11
-
- feat: Add support for Node 12.
12
-
- refactor!: Drop support for Node 6.
13
-
- feat(ui): Add `Button` component.
9
+
**Valid PR titles:**
10
+
- fix: Correct typo
11
+
- feat: Add support for Node.js 18
12
+
- refactor!: Drop support for Node.js 12
13
+
- feat(ui): Add `Button` component
14
14
15
-
Note that since PR titles only have a single line, you have to use the `!`syntax for breaking changes.
15
+
Note that since PR titles only have a single line, you have to use `!`to indicate breaking changes.
16
16
17
17
See [Conventional Commits](https://www.conventionalcommits.org/) for more examples.
18
18
@@ -47,7 +47,7 @@ The action works without configuration, however you can provide options for cust
47
47
The following terminology helps to understand the configuration options:
0 commit comments