-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
38 lines (38 loc) · 1.13 KB
/
action.yml
File metadata and controls
38 lines (38 loc) · 1.13 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
name: 'Git Flow Action'
description: 'GithHub Action for checking the base branch of a pull request.'
inputs:
main_branch_pattern:
description: 'Main branch pattern'
required: true
default: '^(main|master)$'
development_branch_pattern:
description: 'Development branch pattern'
required: true
default: '^(dev|develop|development)$'
semestry_staging_branch_pattern:
description: 'Semestry staging branch pattern'
required: true
default: '^([0-9]+(\.[0-9]+)+-staging|development-staging)$'
semestry_testing_branch_pattern:
description: 'Semestry Testing branch pattern'
required: true
default: '^([0-9]+(\.[0-9]+)+-test|development-test)$'
feature_branch_prefix:
description: 'Feature branch prefix'
required: true
default: 'feature/'
hotfix_branch_prefix:
description: 'Hotfix branch prefix'
required: true
default: 'hotfix/'
fix_branch_prefix:
description: 'Fix branch prefix'
required: true
default: 'fix/'
staging_branch_prefix:
description: 'Staging branch prefix'
required: true
default: 'staging/'
runs:
using: 'node20'
main: 'index.js'