Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Commit and Push Action

A simple GitHub Action that automatically commits and pushes changes in your repository.

Usage (Example)

Add the following to your workflow:

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

    steps:
      - uses: actions/checkout@v5

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

Parameters

Name Required Default Value Description
github-token Required None GitHub token.
commit-message Optional Auto commit Commit message.
user-email Optional action@github.com Commit author email.
user-name Optional GitHub Action Commit author name.

For Developers

Requirements

Quick Start

  1. Set up tools

    task setup
  2. Check

    task check

Release

Create and push a release tag.

Example: To release v1

task tag:1