Update git-analyzer.yml #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Git History Analysis | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # This ensures all history is fetched | |
- name: Run Git History Analyzer | |
uses: BamaCharanChhandogi/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |