Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
delete

GitHub Action

Goragit

pre Pre-release

Goragit

delete

Goragit

Ultimate Git workflow, not for people who cannot use Git properly

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Goragit

uses: narze/goragit@pre

Learn more about this action in narze/goragit

Choose a version

Goragit

The ultimate Git workflow, not for people who cannot use Git properly.

Prerequisites

  • Generate GitHub Personal Access Token (PAT) with repo scope
  • Create repo secret e.g. GH_TOKEN_WITH_REPO_SCOPE using generated PAT

Usage

name: Goragitize
on:
  push:
    branches: [main]
jobs:
  job:
    runs-on: ubuntu-latest
    
    steps:
      - uses: actions/checkout@v3
        with:
          # These options must be set
          fetch-depth: 0
          persist-credentials: false

      - uses: narze/goragit@main
        with:
          author_name: your-github-username
          author_email: your-email@example.com
          github_token_with_repo_scope: ${{ secrets.GH_TOKEN_WITH_REPO_SCOPE }}
          i_understand_that_this_workflow_will_goragodize_my_repo: true