Skip to content

Commit

Permalink
Update pr-validation.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ppatel1604 authored May 25, 2024
1 parent b745d9b commit b254815
Showing 1 changed file with 39 additions and 41 deletions.
80 changes: 39 additions & 41 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,51 +2,49 @@ name: "pr-validation"

on:
pull_request:
types: [opened, edited, reopened, synchronize]
types: [opened, edited, reopened, synchronize]

jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Validate PR title
id: .
env:
REGEX: '^(fix|feat|chore)(!)?:\ .+'
run: |
PR_TITLE=$(jq -r .pull_request.title "$GITHUB_EVENT_PATH")
REGEX=$REGEX
DEPENDABOT_REGEX="^Bump\\s.+"
if [[ ! "$PR_TITLE" =~ $REGEX && ! "$PR_TITLE" =~ $DEPENDABOT_REGEX ]]; then
echo "Invalid PR title"
echo "PR_STATUS=false" >> $GITHUB_OUTPUT
exit 1
else
echo "Valid PR title"
echo "PR_STATUS=true" >> $GITHUB_OUTPUT
fi

- name: Update Status and Comment on PR
if: always() # Ensure this step runs regardless of previous success or failure
uses: actions/github-script@v6
env:
REGEX: '^(fix|feat|chore)(!)?:\ .+'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const regex = process.env.REGEX;
const context = "PR Title Validation";
const state = ${{ steps.validation.output.PR_STATUS }} ? "success" : "failure";
const description = ${{ steps.validation.output.PR_STATUS }} ? "PR title is valid." : `PR title is invalid. Ensure it matches the pattern: ${regex}`;
const prNumber = context.payload.pull_request.number;
const commitSha = context.payload.pull_request.head.sha;

// Create a status check
await github.rest.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: commitSha,
state: state,
context: validate,
description: description
});
id: validation
env:
REGEX: '^(fix|feat|chore)(!)?:\ .+'
run: |
PR_TITLE=$(jq -r .pull_request.title "$GITHUB_EVENT_PATH")
REGEX=$REGEX
DEPENDABOT_REGEX="^Bump\\s.+"
if [[ ! "$PR_TITLE" =~ $REGEX && ! "$PR_TITLE" =~ $DEPENDABOT_REGEX ]]; then
echo "Invalid PR title"
echo "PR_STATUS=false" >> $GITHUB_OUTPUT
exit 1
else
echo "Valid PR title"
echo "PR_STATUS=true" >> $GITHUB_OUTPUT
fi
- name: Update Status and Comment on PR
uses: actions/github-script@v6
env:
REGEX: '^(fix|feat|chore)(!)?:\ .+'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const regex = process.env.REGEX;
const context = "PR Title Validation";
const state = ${{ steps.validation.output.PR_STATUS }} ? "success" : "failure";
const description = ${{ steps.validation.output.PR_STATUS }} ? "PR title is valid." : `PR title is invalid. Ensure it matches the pattern: ${regex}`;
const prNumber = context.payload.pull_request.number;
const commitSha = context.payload.pull_request.head.sha;
// Create a status check
await github.rest.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: commitSha,
state: state,
context: validate,
description: description
});

0 comments on commit b254815

Please sign in to comment.