Skip to content

Releases: mirrajabi/aider-github-action

v1.1.0

23 Mar 20:24

Choose a tag to compare

What's Changed

Deprecation

API Keys now have to be set using api_key_env_name and api_key_env_value.
Using fields below to set the api key is deprecated and will be removed in a future release:

  • openai_api_key
  • anthropic_api_key
  • gemini_api_key
  • groq_api_key
  • cohere_api_key
  • deepseek_api_key
  • openrouter_api_key

How to migrate

Change the input parameters using the new fields like below and remove the deprecated inputs:

jobs:
  my_job:
    steps:
      - name: Apply changes with Aider
        uses: mirrajabi/aider-github-action@v1.1.0
        timeout-minutes: 10 # So that you won't accidentally burn your LLM provider credits!
        with:
          api_key_env_name: OPENAI_API_KEY
          api_key_env_value: ${{ secrets.openai_api_key }}
          branch: ${{ fromJson(steps.create_branch.outputs.result).ref }}
          model: ${{ inputs.model }}
          aider_args: '--yes --message "Do this and that"'

Full Changelog: v1.0.4...v1.1.0

v1.0.4

24 Sep 18:07

Choose a tag to compare

What's Changed

  • The latest aider-chat package will be used when building the Docker image
  • Bump docker/build-push-action from 6.6.1 to 6.7.0 by @dependabot in #9

Full Changelog: v1.0.3...v1.0.4

v1.0.3

18 Aug 19:26

Choose a tag to compare

v1.0.2

18 Aug 18:54

Choose a tag to compare

What's Changed

  • Bump docker/build-push-action from 6.5.0 to 6.6.1 by @dependabot in #8

Full Changelog: v1.0.1...v1.0.2

v1.0.1

24 Jul 12:04
9c48714

Choose a tag to compare

  • Adds support for additional models [#2]

Initial release!

30 Dec 18:21

Choose a tag to compare

Don't waste time coding small features! Just tag a GitHub issue and let the code be generated for you!