-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17b8a2a
commit 9acf617
Showing
3 changed files
with
21 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
## v4.1.1 (2024-09-09) | ||
|
||
### Refactor | ||
|
||
- add pr-delete-branch input (#44) | ||
|
||
## v4.1.0 (2024-09-01) | ||
|
||
### Feat | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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].0 | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].1 | ||
with: | ||
registry-image: user/app | ||
metadata-tags: | | ||
|
@@ -90,6 +90,8 @@ requirements. | |
Defaults to `'chore(requirements): pip-compile upgrade'`. Optional. | ||
- `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. | ||
- `sign-commits` (`string`): Whether to sign Git commits. Options: `'yes'`, | ||
`'no'`. Defaults to `'yes'`. Optional. | ||
|
||
|
@@ -114,7 +116,7 @@ on: | |
jobs: | ||
pip-compile-upgrade: | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].0 | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].1 | ||
with: | ||
path: requirements.txt | ||
secrets: | ||
|
@@ -137,6 +139,8 @@ to install Python and invoke [`pre-commit autoupdate`]. | |
`'no'`. Defaults to `'yes'`. Optional. | ||
- `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. | ||
- `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 | ||
|
@@ -163,7 +167,7 @@ on: | |
jobs: | ||
pre-commit-autoupdate: | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].0 | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].1 | ||
with: | ||
skip-repos: 'flake8' | ||
secrets: | ||
|
@@ -188,7 +192,7 @@ to install Python and invoke [`pre-commit`]. | |
```yaml | ||
jobs: | ||
main: | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].0 | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].1 | ||
with: | ||
skip-hooks: 'pylint' | ||
``` | ||
|
@@ -202,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].0 | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].1 | ||
``` | ||
|
||
### .github/workflows/pypi-upload.yml | ||
|
@@ -232,7 +236,7 @@ Secrets: | |
```yaml | ||
jobs: | ||
main: | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].0 | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].1 | ||
with: | ||
python-version: '3.11' | ||
secrets: | ||
|
@@ -260,7 +264,7 @@ requires = | |
```yaml | ||
jobs: | ||
main: | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].0 | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].1 | ||
``` | ||
|
||
### .github/workflows/tox-envs.yml | ||
|
@@ -292,7 +296,7 @@ requires = | |
```yaml | ||
jobs: | ||
main: | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].0 | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].1 | ||
with: | ||
python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]' | ||
``` | ||
|
@@ -330,7 +334,7 @@ and on your workflow: | |
```yaml | ||
jobs: | ||
main: | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].0 | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].1 | ||
with: | ||
python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]' | ||
``` | ||
|
@@ -345,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].0 | ||
uses: coatl-dev/workflows/.github/workflows/[email protected].1 | ||
``` | ||
|
||
[`actions/setup-python`]: https://github.com/actions/setup-python | ||
|