forked from github/rally
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrally.yml
55 lines (44 loc) · 1.44 KB
/
rally.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
---
# Name of the GitHub Check
checksName: integrations/rally
# Check PR Body for Rally story/defect (true | false)
checkPRBody: true
# Check PR Title for Rally story/defect (true | false)
checkPRTitle: true
# Check all commit messages for a Rally story/defect (true | false)
checkCommitMessages: true
# Set Rally Flow State to Complete on merge if the PR Body contains "/completes <DEFECT/STORY ID>"
mergeOnPRBody: true
# Comment on the PR in addition to the check message? (true | false)
commentOnPull: false
rally:
server: https://rally1.rallydev.com
## Leave these blank if you use an API key
##username: rallyUser
##password: rallyPass
## This is required if we don't use username/password
## NOTE: If you set this in your .env file then you can
## leave this commented out. It will override your .env
#api_key: _1234abc567...
# Which workspace OID this repo will link to
workspace: 12345
# Which projects this repo will link to.
# To have it connect to any project, leave this value blank
# Optional - Leave it commented or set to `Any` to allow from any
# project in the workspace
projects:
- Sample Project
- devops-engineering
# List of valid Rally objects to check
objects:
- defect
#- defectsuite
#- task
#- testcase
#- hierarchicalrequirement
- userstory
#- story
# List of Rally states that an issue must be in in order to pass
states:
- Defined
- In-Progress