-
Notifications
You must be signed in to change notification settings - Fork 42
34 lines (28 loc) · 1.12 KB
/
pr-check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# SPDX-FileCopyrightText: Copyright 2023 The Minder Authors
# SPDX-License-Identifier: Apache-2.0
name: Pull Request Validation
on:
pull_request:
types: [opened, edited, reopened, synchronize]
jobs:
check-pr-content:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'stacklokbot' }}
steps:
- name: Check PR for Change Type Selection
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
const pr = context.payload.pull_request;
if (!pr) {
console.log('This action must be run on a pull request event.');
core.setFailed('No pull request data found.');
return;
}
const prNumber = pr.number;
const body = pr.body;
console.log(`Processing PR #${prNumber}`);
const changeTypeRegex = /\- \[[xX]\] (Bug fix|Feature|Breaking change|Documentation|Refactoring)/;
if (!changeTypeRegex.test(body)) {
core.setFailed("You must select at least one Change Type.");
}