-
Notifications
You must be signed in to change notification settings - Fork 2
72 lines (68 loc) · 3.14 KB
/
gitstream.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
# Code generated by gitStream GitHub app - DO NOT EDIT
name: gitStream workflow automation
run-name: |
/:\ gitStream: PR #${{ fromJSON(fromJSON(github.event.inputs.client_payload)).pullRequestNumber }} from ${{ github.event.inputs.full_repository }}. Cache: ${{ fromJSON(fromJSON(inputs.client_payload)).isNonCommitEvent }}. Run-id: ${{ fromJSON(fromJSON(inputs.client_payload)).artifactRunId }}
on:
workflow_dispatch:
inputs:
client_payload:
description: The Client payload
required: true
full_repository:
description: the repository name include the owner in `owner/repo_name` format
required: true
head_ref:
description: the head sha
required: true
base_ref:
description: the base ref
required: true
installation_id:
description: the installation id
required: false
resolver_url:
description: the resolver url to pass results to
required: true
resolver_token:
description: Optional resolver token for resolver service
required: false
default: ''
debug_mode:
description: Debug mode
required: false
default: true
jobs:
gitStream:
timeout-minutes: 5
runs-on: ubuntu-latest
name: gitStream workflow automation
env:
SLACK_LINEAR_BEEHIVE_WEBHOOK: ${{ secrets.SLACK_LINEAR_BEEHIVE_WEBHOOK }}
SLACK_TEAM_FLARE_WEBHOOK: ${{ secrets.SLACK_TEAM_FLARE_WEBHOOK }}
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
JIRA_URL: ${{ secrets.JIRA_URL }}
JIRA_USER: ${{ secrets.JIRA_USER }}
UI_GUILD_SLACK_WEBHOOK: ${{ secrets.UI_GUILD_SLACK_WEBHOOK }}
LINEARB_METRICS_API_KEY: ${{ secrets.LINEARB_METRICS_API_KEY }}
LINEARB_PUBLIC_API: ${{ secrets.LINEARB_PUBLIC_API }}
OPEN_AI_TOKEN: ${{ secrets.OPEN_AI_TOKEN }}
OPEN_AI_GITSTREAM_QA_TOKEN: ${{ secrets.OPEN_AI_GITSTREAM_QA_TOKEN }}
OPEN_AI_GITSTREAM_REVIEWS_TOKEN: ${{ secrets.OPEN_AI_GITSTREAM_REVIEWS_TOKEN }}
ENABLE_DEBUG_ARTIFACTS: true
ENABLE_CACHE: false
TICKET_SUGGESTION_TOKEN: ${{ secrets.TICKET_SUGGESTION_TOKEN }}
steps:
- name: Adding PR Url
run: |
echo '[${{ fromJSON(fromJSON(inputs.client_payload)).repo }}#${{ fromJSON(fromJSON(inputs.client_payload)).prContext.number }}](${{ fromJSON(fromJSON(inputs.client_payload)).prContext.url }}) - `${{ fromJSON(fromJSON(inputs.client_payload)).branch }}` by ${{ fromJSON(fromJSON(inputs.client_payload)).prContext.author }}' >> $GITHUB_STEP_SUMMARY
- name: Evaluate Rules
uses: linear-b/gitstream-github-action@LINBEE-12304-add_support_to_dry_run
id: rules-engine
with:
full_repository: ${{ github.event.inputs.full_repository }}
head_ref: ${{ github.event.inputs.head_ref }}
base_ref: ${{ github.event.inputs.base_ref }}
client_payload: ${{ github.event.inputs.client_payload }}
installation_id: ${{ github.event.inputs.installation_id }}
resolver_url: ${{ github.event.inputs.resolver_url }}
resolver_token: ${{ github.event.inputs.resolver_token }}