File tree Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Code generated by gitStream GitHub app - DO NOT EDIT
2
+
3
+ name : gitStream workflow automation
4
+ run-name : |
5
+ /:\ gitStream: PR #${{ fromJSON(fromJSON(github.event.inputs.client_payload)).pullRequestNumber }} from ${{ github.event.inputs.full_repository }}
6
+
7
+ on :
8
+ workflow_dispatch :
9
+ inputs :
10
+ client_payload :
11
+ description : The Client payload
12
+ required : true
13
+ full_repository :
14
+ description : the repository name include the owner in `owner/repo_name` format
15
+ required : true
16
+ head_ref :
17
+ description : the head sha
18
+ required : true
19
+ base_ref :
20
+ description : the base ref
21
+ required : true
22
+ installation_id :
23
+ description : the installation id
24
+ required : false
25
+ resolver_url :
26
+ description : the resolver url to pass results to
27
+ required : true
28
+ resolver_token :
29
+ description : Optional resolver token for resolver service
30
+ required : false
31
+ default : ' '
32
+
33
+ jobs :
34
+ gitStream :
35
+ timeout-minutes : 5
36
+ runs-on : ubuntu-latest
37
+ name : gitStream workflow automation
38
+ steps :
39
+ - name : Evaluate Rules
40
+ uses : linear-b/gitstream-github-action@v2
41
+ id : rules-engine
42
+ with :
43
+ full_repository : ${{ github.event.inputs.full_repository }}
44
+ head_ref : ${{ github.event.inputs.head_ref }}
45
+ base_ref : ${{ github.event.inputs.base_ref }}
46
+ client_payload : ${{ github.event.inputs.client_payload }}
47
+ installation_id : ${{ github.event.inputs.installation_id }}
48
+ resolver_url : ${{ github.event.inputs.resolver_url }}
49
+ resolver_token : ${{ github.event.inputs.resolver_token }}
You can’t perform that action at this time.
0 commit comments