Skip to content

satt-dots/simple-commit-and-push

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Commit and Push Action

リポジトリ内の変更を自動でコミット&プッシュするシンプルな GitHub Action です。

使い方(例)

以下の内容をワークフローに追加してください。

jobs:
  your-job:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4

      - name: Commit and Push
        uses: satt-dots/simple-commit-and-push@v1
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}

パラメータ

名前 必須 デフォルト値 説明
github-token 必須 なし GitHub のトークン。
commit-message 任意 Auto commit コミットメッセージ
user-email 任意 action@github.com コミット Author の email
user-name 任意 GitHub Action コミット Author 名

開発者向け

必要なもの

クイックスタート

  1. ツールのセットアップ

    task setup
  2. チェック

    task check

リリース

リリースタグを作り、プッシュします。

例: v1 をリリースしたいとき

task tag:1

Packages

No packages published