gha-utils 4.3.0__tar.gz → 4.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of gha-utils might be problematic. Click here for more details.
- {gha_utils-4.3.0 → gha_utils-4.3.2}/PKG-INFO +2 -2
- {gha_utils-4.3.0 → gha_utils-4.3.2}/gha_utils/__init__.py +1 -1
- {gha_utils-4.3.0 → gha_utils-4.3.2}/gha_utils/metadata.py +3 -2
- {gha_utils-4.3.0 → gha_utils-4.3.2}/gha_utils.egg-info/PKG-INFO +2 -2
- {gha_utils-4.3.0 → gha_utils-4.3.2}/pyproject.toml +2 -2
- {gha_utils-4.3.0 → gha_utils-4.3.2}/readme.md +1 -1
- {gha_utils-4.3.0 → gha_utils-4.3.2}/gha_utils/__main__.py +0 -0
- {gha_utils-4.3.0 → gha_utils-4.3.2}/gha_utils/changelog.py +0 -0
- {gha_utils-4.3.0 → gha_utils-4.3.2}/gha_utils/cli.py +0 -0
- {gha_utils-4.3.0 → gha_utils-4.3.2}/gha_utils/mailmap.py +0 -0
- {gha_utils-4.3.0 → gha_utils-4.3.2}/gha_utils/py.typed +0 -0
- {gha_utils-4.3.0 → gha_utils-4.3.2}/gha_utils.egg-info/SOURCES.txt +0 -0
- {gha_utils-4.3.0 → gha_utils-4.3.2}/gha_utils.egg-info/dependency_links.txt +0 -0
- {gha_utils-4.3.0 → gha_utils-4.3.2}/gha_utils.egg-info/entry_points.txt +0 -0
- {gha_utils-4.3.0 → gha_utils-4.3.2}/gha_utils.egg-info/requires.txt +0 -0
- {gha_utils-4.3.0 → gha_utils-4.3.2}/gha_utils.egg-info/top_level.txt +0 -0
- {gha_utils-4.3.0 → gha_utils-4.3.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: gha-utils
|
|
3
|
-
Version: 4.3.
|
|
3
|
+
Version: 4.3.2
|
|
4
4
|
Summary: ⚙️ CLI helpers for GitHub Actions + reuseable workflows
|
|
5
5
|
Author-email: Kevin Deldycke <kevin@deldycke.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/kdeldycke/workflows
|
|
@@ -91,7 +91,7 @@ $ python -m pip install uv
|
|
|
91
91
|
$ uv venv
|
|
92
92
|
$ source .venv/bin/activate
|
|
93
93
|
$ uv pip install .
|
|
94
|
-
$ uv run gha-utils
|
|
94
|
+
$ uv run -- gha-utils
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
## Reusable workflows collection
|
|
@@ -267,10 +267,11 @@ class Metadata:
|
|
|
267
267
|
env:
|
|
268
268
|
GITHUB_CONTEXT: ${{ toJSON(github) }}
|
|
269
269
|
run: |
|
|
270
|
-
uv run gha-utils --verbosity DEBUG metadata --overwrite "$GITHUB_OUTPUT"
|
|
270
|
+
uv --no-progress run gha-utils --verbosity DEBUG metadata --overwrite "$GITHUB_OUTPUT"
|
|
271
271
|
|
|
272
272
|
.. todo::
|
|
273
|
-
Try to remove reliance on GitHub context entirely so we can eliminate the
|
|
273
|
+
Try to remove reliance on GitHub context entirely so we can eliminate the
|
|
274
|
+
JSON/env hack above.
|
|
274
275
|
"""
|
|
275
276
|
if "GITHUB_CONTEXT" not in os.environ:
|
|
276
277
|
if self.in_ci_env:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: gha-utils
|
|
3
|
-
Version: 4.3.
|
|
3
|
+
Version: 4.3.2
|
|
4
4
|
Summary: ⚙️ CLI helpers for GitHub Actions + reuseable workflows
|
|
5
5
|
Author-email: Kevin Deldycke <kevin@deldycke.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/kdeldycke/workflows
|
|
@@ -91,7 +91,7 @@ $ python -m pip install uv
|
|
|
91
91
|
$ uv venv
|
|
92
92
|
$ source .venv/bin/activate
|
|
93
93
|
$ uv pip install .
|
|
94
|
-
$ uv run gha-utils
|
|
94
|
+
$ uv run -- gha-utils
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
## Reusable workflows collection
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
# Docs: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
|
|
3
3
|
name = "gha-utils"
|
|
4
|
-
version = "4.3.
|
|
4
|
+
version = "4.3.2"
|
|
5
5
|
# Python versions and their status: https://devguide.python.org/versions/
|
|
6
6
|
# XXX 3.8 is not enough and we need to bump requirements to 3.8.6 because of:
|
|
7
7
|
# https://github.com/clbarnes/backports.strenum/issues/1
|
|
@@ -104,7 +104,7 @@ warn_unreachable = true
|
|
|
104
104
|
pretty = true
|
|
105
105
|
|
|
106
106
|
[tool.bumpversion]
|
|
107
|
-
current_version = "4.3.
|
|
107
|
+
current_version = "4.3.2"
|
|
108
108
|
allow_dirty = true
|
|
109
109
|
ignore_missing_files = true
|
|
110
110
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|