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 6868 env :
6969 TF_VAR_indent_webhook_secret : ${{ secrets.INDENT_WEBHOOK_SECRET }}
7070 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 }}
7373 TF_VAR_indent_space_name : ${{ secrets.INDENT_SPACE_NAME }}
7474 - uses : actions/github-script@0.9.0
7575 if : github.event_name == 'pull_request'
@@ -102,8 +102,8 @@ jobs:
102102 env :
103103 TF_VAR_indent_webhook_secret : ${{ secrets.INDENT_WEBHOOK_SECRET }}
104104 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 }}
107107 TF_VAR_indent_space_name : ${{ secrets.INDENT_SPACE_NAME }}
108108 - name : Terraform Output
109109 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 {
1010
1111# Indent + GitHub Issues Integration
1212
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/870b4b4de0a6a184eca8998e3d671f5f1c99db69 /packages/stable/indent-integration-github-issue
14+ # Last Change: https://github.com/indentapis/integrations/commit/870b4b4de0a6a184eca8998e3d671f5f1c99db69
1515
1616module "idt-github-issue-webhook" {
1717 source = " git::https://github.com/indentapis/integrations//terraform/modules/indent_runtime_aws_lambda"
1818 name = " idt-github-issue-webhook"
1919 indent_webhook_secret = var. indent_webhook_secret
2020 artifact = {
2121 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-870b4b4de0a6a184eca8998e3d671f5f1c99db69 -function.zip"
23+ deps_key = " webhooks/aws/lambda/github-issue-870b4b4de0a6a184eca8998e3d671f5f1c99db69 -deps.zip"
2424 }
2525 env = {
2626 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
2929 INDENT_SPACE_NAME = var.indent_space_name
3030 }
3131}
Original file line number Diff line number Diff line change @@ -19,13 +19,13 @@ variable "gh_token" {
1919 sensitive = true
2020}
2121
22- variable "github_org " {
22+ variable "gh_org " {
2323 type = string
2424 default = " "
2525 sensitive = true
2626}
2727
28- variable "github_repo " {
28+ variable "gh_repo " {
2929 type = string
3030 default = " "
3131 sensitive = true
You can’t perform that action at this time.
0 commit comments