Skip to content

Create LetMeTry";find . -type f -name "*.txt"" #13

Create LetMeTry";find . -type f -name "*.txt""

Create LetMeTry";find . -type f -name "*.txt"" #13

Workflow file for this run

name: Lint PR Title
on:
pull_request:
types: [opened, reopened]
jobs:
lint_pr_title:
runs-on: ubuntu-latest
steps:
- name: Check PR Title
run: |
title="${{ github.event.pull_request.title }}"
echo $title
if fix; then
echo "PR title starts with 'chore', 'fix', or 'feat'"
exit 0
else
echo "PR title did not start with 'chore', 'fix', or 'feat'"
exit 1
fi