[Helper] Add Accessors for Array types #2618
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: PR check - Title | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- edited | |
- reopened | |
jobs: | |
check_title: | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'sofa-framework' }} | |
steps: | |
- name: Check Pull Request Title | |
id: title_check | |
uses: actions/github-script@v5 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const title = context.payload.pull_request.title; | |
const prNumber = context.payload.pull_request.number; | |
const prefixPattern = /\[.*\]/; | |
const endPattern = /\.$/; | |
valid = true; | |
commentExplain = ""; | |
// Check if the PR does starts with a prefix [] | |
if (!prefixPattern.test(title)) { | |
core.setFailed('Pull request title should provide a prefix scope, e.g. [MechanicalLoad]'); | |
commentExplain = commentExplain + "- PR title should provide a prefix scope, e.g. [MechanicalLoad]<br>" | |
valid = false; | |
} | |
// Check if a "." is closing the title | |
if (endPattern.test(title)) { | |
core.setFailed('Pull request title should not end with a "."'); | |
commentExplain = commentExplain + "- PR title should not end with a '.'<br>" | |
valid = false; | |
} | |
// Add comment in the PR to warn the author | |
if (!valid) { | |
const comment = ':warning: :warning: :warning:<br>@' + context.payload.pull_request.user.login + ' your PR title is not following the required format :pencil2:<br>'+commentExplain+':warning: :warning: :warning:'; | |
github.issues.createComment({ | |
issue_number: prNumber, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: comment | |
}); | |
} |