Bump actions/checkout from 4.1.7 to 4.2.0 #28
Workflow file for this run
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: 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 }}" |