-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
41 lines (32 loc) · 1.19 KB
/
action.yml
File metadata and controls
41 lines (32 loc) · 1.19 KB
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
35
36
37
38
39
40
41
# SPDX-FileCopyrightText: 2023 Kevin de Jong <monkaii@hotmail.com>
# SPDX-License-Identifier: MIT
name: 'CommitMe - Conventional Commits validation'
author: 'Kevin de Jong'
description: >
Validate your Pull Request against the Conventional Commits specification.
branding:
icon: 'code'
color: 'white'
inputs:
token:
description: 'GitHub token used to access GitHub (eg. github.token)'
required: false
update-labels:
description: 'Update labels on Pull Request (`breaking`, `feature` or `fix`)'
required: false
default: true
include-commits:
description: 'Include commits associated with the Pull Request; by default we use the repository configuration settings to determine this value.'
required: false
scopes:
description: 'Conventional Commits scopes allowed for this repository; be default we accept all scopes.'
required: false
types:
description: 'Conventional Commits types allowed for this repository; by default we accept all types.'
required: false
config:
description: 'Path to the configuration file; by default ".pre-commit.json" is used.'
required: false
runs:
using: 'node20'
main: 'lib/action/index.js'