Skip to content

Commit f7b731f

Browse files
committed
fix: pinned action commit hashes, updated pr template
1 parent fd1308b commit f7b731f

File tree

3 files changed

+23
-7
lines changed

3 files changed

+23
-7
lines changed

.github/pull_request_template.md

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,31 @@
33
Describe the change at a high-level.
44
-->
55

6+
## Commit Message Format
7+
<!--
8+
This project uses Conventional Commits for automated versioning and changelog generation.
9+
Ensure your commit messages follow this format:
10+
11+
- feat: A new feature (triggers MINOR version bump)
12+
- fix: A bug fix (triggers PATCH version bump)
13+
- feat!: A breaking change (triggers MAJOR version bump)
14+
- docs: Documentation changes
15+
- chore: Maintenance tasks
16+
- test: Adding or updating tests
17+
18+
Examples:
19+
- feat: add expectation for null value validation
20+
- fix: correct type hint in expect_value_greater_than
21+
- feat!: remove deprecated validation methods
22+
-->
23+
624
## Checklist
725
<!--
826
Please consider the following when submitting code changes.
927
10-
Note: You can check the boxes once you submit, or put an x in the [ ]
11-
12-
like [x]
28+
Note: You can check the boxes once you submit, or put an x in the [ ] like [x]
1329
-->
1430

1531
- [ ] Tests have been added in the prescribed format
16-
- [ ] `CHANGELOG.md` has been updated to reflect changes
17-
- [ ] Version has been updated in `pyproject.toml`
32+
- [ ] Commit messages follow [Conventional Commits](https://www.conventionalcommits.org/) format
33+
- [ ] Pre-commit hooks pass locally

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
run: uv build
2525

2626
- name: Publish to PyPI
27-
uses: pypa/gh-action-pypi-publish@release/v1
27+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # release/v1

.github/workflows/release-please.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
release-please:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: googleapis/release-please-action@v4
16+
- uses: googleapis/release-please-action@c3fc4de07084f75a2b61a5b933069bda6edf3d5c # v4

0 commit comments

Comments
 (0)