mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-04-20 03:02:51 -04:00
feat(package.json): add @actions/core and @actions/github dependencies feat(src/github-action.ts): create GitHub Action to check and replace 'oc' in commit messages with AI-generated messages
13 lines
290 B
YAML
13 lines
290 B
YAML
name: 'OpenCommit GitHub Action'
|
|
description: 'Checks commit messages and replaces "oc" with a smart AI generated message'
|
|
author: 'https://github.com/di-sukharev'
|
|
|
|
inputs:
|
|
token:
|
|
description: 'GitHub token'
|
|
required: true
|
|
|
|
runs:
|
|
using: 'node12'
|
|
main: 'dist/github-action.js'
|