Remove update PR branch workflow (#116) #271
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: "Check Pull Request Name" | |
on: [pull_request, push] | |
permissions: | |
contents: read | |
jobs: | |
pr-name-check: | |
name: Check Pull Request Name | |
runs-on: ubuntu-20.04 | |
if: github.event_name == 'pull_request' | |
steps: | |
- name: Compare PR Name to the Template | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
with: | |
script: | | |
const prNameRegExp = /^(?:\[\d+\]\s?)+\w+.*/; | |
const skipLabel = '[skip-name]'; | |
const prName = context.payload.pull_request.title; | |
console.log(`Pull Request Name is ${prName}`); | |
if (prName.includes(skipLabel)) { | |
console.log('Skipping PR name checks'); | |
return; | |
} | |
if (!prNameRegExp.test(prName)) { | |
console.log('Template: [issue_number] ([another_issue_number] ...) Short description'); | |
core.setFailed('Your Pull Request title does not confirm to the template'); | |
return; | |
} | |
console.log('Your Pull Request name confirm to the provided template'); |