Skip to content

Commit 1e010a0

Browse files
authored
Merge pull request #17 from jlowin/version
version bump
2 parents b19366c + a36614b commit 1e010a0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
pull-requests: write
3838
steps:
3939
- uses: actions/checkout@v4
40-
- uses: jlowin/ai-labeler@v0.4.0
40+
- uses: jlowin/ai-labeler@v0.5.0
4141
with:
4242
include-repo-labels: true
4343
openai-api-key: ${{ secrets.OPENAI_API_KEY }}
@@ -66,7 +66,7 @@ By default, the AI labeler will use all labels found in your repository, as well
6666
To disable this behavior, set `include-repo-labels` to `false`. In this case, the AI will only use labels defined in your config file. See the fine-tuning section below for more details.
6767

6868
```yaml
69-
- uses: jlowin/ai-labeler@v0.4.0
69+
- uses: jlowin/ai-labeler@v0.5.0
7070
with:
7171
include-repo-labels: false # Only use labels defined in config
7272
```
@@ -81,7 +81,7 @@ You must specify an LLM provider and provide an API key. You can use either Open
8181
By default, the AI labeler uses OpenAI's `gpt-4o-mini` model. This is an excellent and affordable choice for most users. However, 4o-mini can get confused by complex per-label instructions. You can specify a different model if you'd like:
8282

8383
```yaml
84-
- uses: jlowin/ai-labeler@v0.4.0
84+
- uses: jlowin/ai-labeler@v0.5.0
8585
with:
8686
controlflow-llm-model: openai/gpt-4o-mini
8787
```
@@ -97,7 +97,7 @@ Note that you must provide an appropriate API key for your selected LLM provider
9797
#### OpenAI
9898

9999
```yaml
100-
- uses: jlowin/ai-labeler@v0.4.0
100+
- uses: jlowin/ai-labeler@v0.5.0
101101
with:
102102
openai-api-key: ${{ secrets.OPENAI_API_KEY }}
103103
@@ -110,7 +110,7 @@ Set your OpenAI API key as a repository secret named `OPENAI_API_KEY`. Since the
110110
#### Anthropic
111111

112112
```yaml
113-
- uses: jlowin/ai-labeler@v0.4.0
113+
- uses: jlowin/ai-labeler@v0.5.0
114114
with:
115115
anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}
116116
@@ -125,7 +125,7 @@ Set your Anthropic API key as a repository secret named `ANTHROPIC_API_KEY`. To
125125
By default, the action looks for additional configuration in `.github/ai-labeler.yml`. You can specify a different location:
126126

127127
```yaml
128-
- uses: jlowin/ai-labeler@v0.4.0
128+
- uses: jlowin/ai-labeler@v0.5.0
129129
with:
130130
config-path: .github/my-custom-config.yml
131131
```

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ai-labeler"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
description = "GitHub Action that uses LLMs to label issues and PRs"
55
readme = "README.md"
66
requires-python = ">=3.12"

uv.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)