Skip to content

Commit 08437b5

Browse files
committed
github: workflows: Enable PR checks
- Enforce that the length of the commit title is at most 72. - Enforce that the first word of the PR is followed by a colon. Signed-off-by: Hamza Butt <hamza.butt@arm.com>
1 parent a760af4 commit 08437b5

File tree

2 files changed

+78
-0
lines changed

2 files changed

+78
-0
lines changed

.github/automation/pr-title-check.py

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#!/usr/bin/python3
2+
3+
# *******************************************************************************
4+
# Copyright 2024 Arm Limited and affiliates.
5+
# SPDX-License-Identifier: Apache-2.0
6+
#
7+
# Licensed under the Apache License, Version 2.0 (the "License");
8+
# you may not use this file except in compliance with the License.
9+
# You may obtain a copy of the License at
10+
#
11+
# http://www.apache.org/licenses/LICENSE-2.0
12+
#
13+
# Unless required by applicable law or agreed to in writing, software
14+
# distributed under the License is distributed on an "AS IS" BASIS,
15+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
# See the License for the specific language governing permissions and
17+
# limitations under the License.
18+
# *******************************************************************************
19+
20+
import argparse
21+
22+
# * Ensuring the first word ends in a colon.
23+
# TODO: Limit the first word to an acceptable list of tags.
24+
def __firstWordCheck(msg: str):
25+
firstWord = msg.partition(" ")[0]
26+
if not firstWord.endswith(":"):
27+
raise ValueError(f"First word must end in a colon. Is: {firstWord}")
28+
29+
30+
# * Ensuring a character limit for the first line.
31+
def __numCharacterCheck(msg: str):
32+
summary = msg.partition("\n")[0]
33+
msgSummaryLen = len(summary)
34+
if msgSummaryLen >= 72:
35+
raise ValueError(f"Message summary must be less than 72. Is: {msgSummaryLen}")
36+
37+
38+
def main():
39+
parser = argparse.ArgumentParser()
40+
parser.add_argument("msg", help="Commit message to check.")
41+
args = parser.parse_args()
42+
msg: str = args.msg
43+
print(f"msg: {msg}")
44+
__numCharacterCheck(msg)
45+
__firstWordCheck(msg)
46+
47+
if __name__ == "__main__":
48+
main()

.github/workflows/pr-check.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# *******************************************************************************
2+
# Copyright 2024 Arm Limited and affiliates.
3+
# SPDX-License-Identifier: Apache-2.0
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
# *******************************************************************************
17+
18+
name: "PR Checks"
19+
20+
on:
21+
pull_request:
22+
types: [opened, edited, synchronize, reopened]
23+
24+
jobs:
25+
title:
26+
runs-on: ubuntu-24.04
27+
steps:
28+
- uses: actions/checkout@v4
29+
- name: Pass pull request title through script.
30+
run: python3 ./.github/automation/pr-title-check.py "${{ github.event.pull_request.title }}"

0 commit comments

Comments
 (0)