Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/good-egg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
score:
runs-on: ubuntu-latest
steps:
- uses: 2ndSetAI/good-egg@v1
- uses: 2ndSetAI/good-egg@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
skip-known-contributors: 'false'
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [2.0.0] - 2026-03-13

### Added

Expand Down Expand Up @@ -61,5 +61,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- YAML configuration with environment variable overrides.
- Multiple output formatters: Markdown, CLI table, JSON, and GitHub check-run.

[2.0.0]: https://github.com/2ndSetAI/good-egg/releases/tag/v2.0.0
[1.0.0]: https://github.com/2ndSetAI/good-egg/releases/tag/v1.0.0
[0.1.0]: https://github.com/2ndSetAI/good-egg/releases/tag/v0.1.0
13 changes: 2 additions & 11 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,9 @@ runs:
with:
python-version: '3.12'

- name: Install uv
uses: astral-sh/setup-uv@v4

- name: Install good-egg
shell: bash
env:
SETUPTOOLS_SCM_PRETEND_VERSION: '0.0.0'
run: |
cd ${{ github.action_path }}
uv sync --frozen
run: pip install 'good-egg>=2,<3'

- name: Run Good Egg
id: score
Expand All @@ -76,9 +69,7 @@ runs:
INPUT_FAIL-ON-LOW: ${{ inputs.fail-on-low }}
INPUT_SCORING_MODEL: ${{ inputs.scoring-model }}
INPUT_SKIP_KNOWN_CONTRIBUTORS: ${{ inputs.skip-known-contributors }}
run: |
cd ${{ github.action_path }}
uv run python -m good_egg.action
run: python -m good_egg.action

branding:
icon: 'shield'
Expand Down
Loading