Skip to content

Bump peter-evans/create-pull-request from 5 to 6 (#56) #114

Bump peter-evans/create-pull-request from 5 to 6 (#56)

Bump peter-evans/create-pull-request from 5 to 6 (#56) #114

name: Git Quality Check
on: [push]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Git Quality Check
id: git-quality-check
uses: gcattan/[email protected]
with:
badWords: WIP, todo
mainBranches: origin/master, origin/develop, origin/main
- name: Check outputs
run: |
test "${{ steps.git-quality-check.outputs.score }}" != ""
- name: Create badge
uses: RubbaBoy/[email protected]
with:
NAME: score
LABEL: 'Git Quality Score'
STATUS: ${{ steps.git-quality-check.outputs.score }}
COLOR: 00EEFF
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}