mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-01-11 14:48:07 -05:00
feat: add keywords to package and action descriptions to improve searchability and discoverability of the project feat: update deploy script in package.json to include version bump and publish to npm registry with latest tag
27 lines
538 B
YAML
27 lines
538 B
YAML
name: 'OpenCommit'
|
|
description: 'Replaces lame commit messages with meaningful AI-generated messages when you push to remote 🤯🔫'
|
|
author: 'https://github.com/di-sukharev'
|
|
repo: 'https://github.com/di-sukharev/opencommit/tree/github-action'
|
|
keywords:
|
|
[
|
|
'git',
|
|
'chatgpt',
|
|
'gpt',
|
|
'ai',
|
|
'openai',
|
|
'opencommit',
|
|
'aicommit',
|
|
'aicommits',
|
|
'gptcommit',
|
|
'commit'
|
|
]
|
|
|
|
inputs:
|
|
GITHUB_TOKEN:
|
|
description: 'GitHub token'
|
|
required: true
|
|
|
|
runs:
|
|
using: 'node16'
|
|
main: 'out/github-action.cjs'
|