Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.
/ merge-commits Public archive

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

License

Notifications You must be signed in to change notification settings

autamus/merge-commits

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Packages