Skip to content

Commit

Permalink
bump: version 4.1.1 → 4.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarcoatl committed Sep 10, 2024
1 parent 1736173 commit fd83984
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .cz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ commitizen:
name: cz_conventional_commits
tag_format: v$version
update_changelog_on_bump: true
version: 4.1.1
version: 4.1.2
version_files:
- README.md
version_scheme: semver
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v4.1.2 (2024-09-10)

### Refactor

- set pr-delete-branch default to 'no' (#45)

## v4.1.1 (2024-09-09)

### Refactor
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ GitHub action for using a matrix strategy to distribute the build for
```yml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].1
uses: coatl-dev/workflows/.github/workflows/[email protected].2
with:
registry-image: user/app
metadata-tags: |
Expand Down Expand Up @@ -91,7 +91,7 @@ requirements.
- `pr-auto-merge` (`string`): Automatically merge only after necessary
requirements are met. Options: `'yes'`, `'no'`. Defaults to `'yes'`. Optional.
- `pr-delete-branch` (`string`): Delete the local and remote branch after merge.
Options: `'yes'`, `'no'`. Defaults to `'yes'`. Optional.
Options: `'yes'`, `'no'`. Defaults to `'no'`. Optional.
- `sign-commits` (`string`): Whether to sign Git commits. Options: `'yes'`,
`'no'`. Defaults to `'yes'`. Optional.

Expand All @@ -116,7 +116,7 @@ on:
jobs:
pip-compile-upgrade:
uses: coatl-dev/workflows/.github/workflows/[email protected].1
uses: coatl-dev/workflows/.github/workflows/[email protected].2
with:
path: requirements.txt
secrets:
Expand All @@ -140,7 +140,7 @@ to install Python and invoke [`pre-commit autoupdate`].
- `pr-auto-merge` (`string`): Automatically merge only after necessary
requirements are met. Options: `'yes'`, `'no'`. Defaults to `'yes'`. Optional.
- `pr-delete-branch` (`string`): Delete the local and remote branch after merge.
Options: `'yes'`, `'no'`. Defaults to `'yes'`. Optional.
Options: `'yes'`, `'no'`. Defaults to `'no'`. Optional.
- `sign-commits` (`string`): Whether to sign Git commits. Options: `'yes'`,
`'no'`. Defaults to `'yes'`. Optional.
- `skip-repos` (`string`): A list of repos to exclude from autoupdate. The repos
Expand All @@ -167,7 +167,7 @@ on:
jobs:
pre-commit-autoupdate:
uses: coatl-dev/workflows/.github/workflows/[email protected].1
uses: coatl-dev/workflows/.github/workflows/[email protected].2
with:
skip-repos: 'flake8'
secrets:
Expand All @@ -192,7 +192,7 @@ to install Python and invoke [`pre-commit`].
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].1
uses: coatl-dev/workflows/.github/workflows/[email protected].2
with:
skip-hooks: 'pylint'
```
Expand All @@ -206,7 +206,7 @@ This workflow will install Python and invoke `pylint` to analyze your code.
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].1
uses: coatl-dev/workflows/.github/workflows/[email protected].2
```

### .github/workflows/pypi-upload.yml
Expand Down Expand Up @@ -236,7 +236,7 @@ Secrets:
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].1
uses: coatl-dev/workflows/.github/workflows/[email protected].2
with:
python-version: '3.11'
secrets:
Expand Down Expand Up @@ -264,7 +264,7 @@ requires =
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].1
uses: coatl-dev/workflows/.github/workflows/[email protected].2
```

### .github/workflows/tox-envs.yml
Expand Down Expand Up @@ -296,7 +296,7 @@ requires =
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].1
uses: coatl-dev/workflows/.github/workflows/[email protected].2
with:
python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]'
```
Expand Down Expand Up @@ -334,7 +334,7 @@ and on your workflow:
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].1
uses: coatl-dev/workflows/.github/workflows/[email protected].2
with:
python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]'
```
Expand All @@ -349,7 +349,7 @@ This workflow will install Python and invoke `tox` to run all envs found in
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/[email protected].1
uses: coatl-dev/workflows/.github/workflows/[email protected].2
```

[`actions/setup-python`]: https://github.com/actions/setup-python
Expand Down

0 comments on commit fd83984

Please sign in to comment.