Skip to content

Commit d9af195

Browse files
committed
release: v0.1.3 - update version to 0.1.3 in action.yml, pyproject.toml, and __init__.py; add environment variables for run ID and PR number
1 parent c46e11b commit d9af195

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ outputs:
7272

7373
runs:
7474
using: 'docker'
75-
image: 'docker://ghcr.io/calebevans/gha-failure-analysis:0.1.2'
75+
image: 'docker://ghcr.io/calebevans/gha-failure-analysis:0.1.3'
76+
env:
77+
INPUT_RUN-ID: ${{ inputs.run-id || github.run_id }}
78+
INPUT_PR-NUMBER: ${{ inputs.pr-number || github.event.pull_request.number || '' }}
7679
args:
7780
- analyze

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "gha-failure-analysis"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "AI-powered analysis of GitHub Actions workflow failures using semantic log preprocessing."
55
readme = "README.md"
66
requires-python = ">=3.11"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""GitHub Actions failure analysis tool."""
22

3-
__version__ = "0.1.2"
3+
__version__ = "0.1.3"

0 commit comments

Comments
 (0)