Commit Graph

10 Commits

Author SHA1 Message Date
fbcb87152f Add Create Release GitHub Action
- **CreateRelease.yml**:
  - Created a workflow triggered by pushes to `main` branch and manual dispatch.
  - Configured jobs to run on `windows-latest`.
  - Steps include:
    - Checking out the code.
    - Setting up Python with version 3.x.
    - Installing dependencies `pip`, `pyinstaller`, and `openai`.
    - Extracting the version from `VERSION` file.
    - Building executable using `pyinstaller`.
    - Fetching previous release tag.
    - Generating release notes.
    - Creating a new git tag and pushing it.
    - Publishing the release on GitHub with release notes and the built executable.
2024-08-19 17:40:12 +02:00
e054eaa9f1 Add VERSION file
- Created a new VERSION file
- Set initial version to 0.0.1
2024-08-19 17:39:58 +02:00
e62b947471 Update .gitignore for test specs and build outputs
- Added `*.spec` to ignore test specification files
- Added `build/` directory to ignore build outputs
2024-08-19 17:39:45 +02:00
1b99e75de2 Update README with correct repo URL and config examples
- Update repository URL in clone instructions
- Modify example keyword configuration from `KAI` to `custom`
0.0.1
2024-08-19 16:32:15 +02:00
49256bc606 Update example config references in README
- Removed JSON example config from README
- Added references to `ait.commit.sample.config.json` and `ait.pull_request.sample.config.json`
- Renamed `ait.pull.sample.config.json` to `ait.pull_request.sample.config.json`
2024-08-19 16:30:44 +02:00
193c490f61 Add README.md with usage instructions
- Created a `README.md` file
- Added descriptions for the project's purpose and features
- Provided installation steps and prerequisites
- Included usage instructions with command-line options
- Detailed example configuration file
- Added error handling information
- Documented the license and contributing guidelines
2024-08-19 16:30:31 +02:00
8ab6c57956 Add MIT license
- Created `LICENSE` file
- Added MIT License text with copyright information
2024-08-19 16:28:26 +02:00
bbe01ebf82 Add config files for commit and pull request messages
- Created `ait.commit.sample.config.json` with parameters for generating commit messages
- Created `ait.pull.sample.config.json` with parameters for generating pull request messages
2024-08-19 16:28:13 +02:00
2dce81fcdb Add script to generate PR descriptions using OpenAI
- Created a new Python script `ait.py`
- Implemented functions for loading config, resolving paths, and running git commands
- Integrated OpenAI API to generate text from git outputs
- Added command-line interface for user inputs and configuration settings
2024-08-19 16:27:59 +02:00
9929a80124 Add .gitignore file
- Add `ait.config.json` and `ait.*.config.json` to ignore patterns
- Exception for `ait.sample.config.json` and `ait.*.sample.config.json`
- Ignore the `dist/` directory
2024-08-19 16:27:45 +02:00