blob: 8c206a5abdfcee173bb4c01e0e98f0ef83e4bfc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
name: Check pull request message format
on:
pull_request:
branches:
- current
- crux
- equuleus
jobs:
check-pr-title:
name: Check pull request title
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
timeout-minutes: 2
- name: Install the requests library
run: pip3 install requests
- name: Check the PR title
timeout-minutes: 2
run: |
./scripts/check-pr-title-and-commit-messages.py '${{ github.event.pull_request.url }}'
|