Skip to content

Bump actions/checkout from 4.1.7 to 4.2.0 #28

Bump actions/checkout from 4.1.7 to 4.2.0

Bump actions/checkout from 4.1.7 to 4.2.0 #28

Workflow file for this run

---
name: Pull Request lint
on:
pull_request:
types:
- opened
- edited
- reopened
jobs:
pr-lint:
name: Pull Request lint
# Workflow should not run when Dependabot is opening it
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-22.04
steps:
- name: Lint Pull Request title
uses: morrisoncole/[email protected]
with:
title-regex: "(?:UII|UISD)-[0-9]+"
on-failed-regex-fail-action: true
on-failed-regex-comment:
"Please adjust the title of the PR to include the correct ticket number. Failed regex: `%regex%`!"
repo-token: "${{ secrets.GITHUB_TOKEN }}"