File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 68
68
env :
69
69
TF_VAR_indent_webhook_secret : ${{ secrets.INDENT_WEBHOOK_SECRET }}
70
70
TF_VAR_gh_token : ${{ secrets.GH_TOKEN }}
71
- TF_VAR_github_org : ${{ secrets.GITHUB_ORG }}
72
- TF_VAR_github_repo : ${{ secrets.GITHUB_REPO }}
71
+ TF_VAR_gh_org : ${{ secrets.GH_ORG }}
72
+ TF_VAR_gh_repo : ${{ secrets.GH_REPO }}
73
73
TF_VAR_indent_space_name : ${{ secrets.INDENT_SPACE_NAME }}
74
74
- uses : actions/github-script@0.9.0
75
75
if : github.event_name == 'pull_request'
@@ -102,8 +102,8 @@ jobs:
102
102
env :
103
103
TF_VAR_indent_webhook_secret : ${{ secrets.INDENT_WEBHOOK_SECRET }}
104
104
TF_VAR_gh_token : ${{ secrets.GH_TOKEN }}
105
- TF_VAR_github_org : ${{ secrets.GITHUB_ORG }}
106
- TF_VAR_github_repo : ${{ secrets.GITHUB_REPO }}
105
+ TF_VAR_gh_org : ${{ secrets.GH_ORG }}
106
+ TF_VAR_gh_repo : ${{ secrets.GH_REPO }}
107
107
TF_VAR_indent_space_name : ${{ secrets.INDENT_SPACE_NAME }}
108
108
- name : Terraform Output
109
109
if : github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
Original file line number Diff line number Diff line change @@ -10,22 +10,22 @@ terraform {
10
10
11
11
# Indent + GitHub Issues Integration
12
12
13
- # Details: https://github.com/indentapis/integrations/tree/66ff4232954ef525f523a1cb8062e4509656de27 /packages/stable/indent-integration-github-issue
14
- # Last Change: https://github.com/indentapis/integrations/commit/66ff4232954ef525f523a1cb8062e4509656de27
13
+ # Details: https://github.com/indentapis/integrations/tree/089e36c98bd88726dc6751edf90767725d3d0b35 /packages/stable/indent-integration-github-issue
14
+ # Last Change: https://github.com/indentapis/integrations/commit/089e36c98bd88726dc6751edf90767725d3d0b35
15
15
16
16
module "idt-github-issue-webhook" {
17
17
source = " git::https://github.com/indentapis/integrations//terraform/modules/indent_runtime_aws_lambda"
18
18
name = " idt-github-issue-webhook"
19
19
indent_webhook_secret = var. indent_webhook_secret
20
20
artifact = {
21
21
bucket = " indent-artifacts-us-west-2"
22
- function_key = " webhooks/aws/lambda/github-issue-66ff4232954ef525f523a1cb8062e4509656de27 -function.zip"
23
- deps_key = " webhooks/aws/lambda/github-issue-66ff4232954ef525f523a1cb8062e4509656de27 -deps.zip"
22
+ function_key = " webhooks/aws/lambda/github-issue-089e36c98bd88726dc6751edf90767725d3d0b35 -function.zip"
23
+ deps_key = " webhooks/aws/lambda/github-issue-089e36c98bd88726dc6751edf90767725d3d0b35 -deps.zip"
24
24
}
25
25
env = {
26
26
GH_TOKEN = var.gh_token
27
- GITHUB_ORG = var.github_org
28
- GITHUB_REPO = var.github_repo
27
+ GH_ORG = var.gh_org
28
+ GH_REPO = var.gh_repo
29
29
INDENT_SPACE_NAME = var.indent_space_name
30
30
}
31
31
}
Original file line number Diff line number Diff line change @@ -19,13 +19,13 @@ variable "gh_token" {
19
19
sensitive = true
20
20
}
21
21
22
- variable "github_org " {
22
+ variable "gh_org " {
23
23
type = string
24
24
default = " "
25
25
sensitive = true
26
26
}
27
27
28
- variable "github_repo " {
28
+ variable "gh_repo " {
29
29
type = string
30
30
default = " "
31
31
sensitive = true
You can’t perform that action at this time.
0 commit comments