Skip to content

Merge Commits Action

Actions
A GitHub action to find all of the commits in a PR/Branch merge
v0.0.1
Latest
Star (2)

merge-commits

A Simple GitHub Action to Find all of the Commits in a PR/Branch since the last merge.

Usage

name: "Find Commits in Last Merge"

on:
  push:
    branches:
      - main

jobs:
  find-commits:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
        with:
          fetch-depth: '0'
        
      - name: Run Merge Commits
        uses: autamus/merge-commits@master
        with:
          # repo_location: '/github/workspace/'
          # current_commit: 'specify a hash here if you don't want to use latest.'
          # pretty_output: 'false' # disable pretty output

Merge Commits Action is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

A GitHub action to find all of the commits in a PR/Branch merge
v0.0.1
Latest

Merge Commits Action is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.