-
Notifications
You must be signed in to change notification settings - Fork 61
116 lines (114 loc) · 3.88 KB
/
pull-request-triage.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
name: "Pull Request Triage"
on:
pull_request_target:
types:
- opened
- edited
- synchronize
- ready_for_review
jobs:
###################################################
# Basic Triage
###################################################
pr_triage:
name: "PR Labeller"
# https://github.com/actions/labeler
runs-on: ubuntu-latest
steps:
# V3 is not used as we hit following issue: https://github.com/actions/labeler/issues/107
- uses: actions/labeler@v2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: '.github/labeler.yml'
sync-labels: true
assign_author:
name: "Assign Author to PR"
# https://github.com/marketplace/actions/auto-author-assign
runs-on: ubuntu-latest
steps:
- uses: toshimaru/[email protected]
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
pr_reviewvers:
name: "Assign PR reviewer"
# https://github.com/shufo/auto-assign-reviewer-by-files
runs-on: ubuntu-latest
steps:
- name: Request review based on files changes and/or groups the author belongs to
uses: shufo/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
config: .github/reviewers.yml
###################################################
# Check Conventional Commit Syntax
###################################################
Check_PR_semantic:
runs-on: ubuntu-latest
steps:
# Please look up the latest version from
# https://github.com/amannn/action-semantic-pull-request/releases
- uses: amannn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Configure which types are allowed.
# Default: https://github.com/commitizen/conventional-commit-types
types: |
Feat
Fix
Cut
Doc
CI
Start
Stop
Bump
Test
Make
Refactor
Reformat
Optimize
License
Revert
# Configure which scopes are allowed.
scopes: |
cv_device_v3
cv_container_v3
cv_configlet_v3
cv_task_v3
cv_image_v3
cv_facts_v3
cv_change_control_v3
cv_tag_v3
cv_facts
cv_device
cv_container
cv_configlet
cv_task
module_utils
dhcp_configuration
mkdoc
contribution
how-to
actions
molecule
ansible
github
requirements
pytest
# Configure that a scope must always be provided.
requireScope: false
# Configure additional validation for the subject based on a regex.
# This example ensures the subject doesn't start with an uppercase character.
# subjectPattern: ^(?![A-Z]).+$
# If `subjectPattern` is configured, you can use this property to override
# the default error message that is shown when the pattern doesn't match.
# The variables `subject` and `title` can be used within the message.
subjectPatternError: |
The subject "{subject}" found in the pull request title "{title}"
didn't match the configured pattern. Please ensure that the subject
doesn't start with an uppercase character.
# When using "Squash and merge" on a PR with only one commit, GitHub
# will suggest using that commit message instead of the PR title for the
# merge commit, and it's easy to commit this by mistake. Enable this option
# to also validate the commit message for one commit PRs.
validateSingleCommit: true