Skip to content

Commit

Permalink
fix: tf
Browse files Browse the repository at this point in the history
  • Loading branch information
okradze committed Jan 22, 2024
1 parent e9375fd commit b731094
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tf_apply_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
TF_WORKSPACE: ${{ inputs.gh_environment }}
GIT_CONFIG_GLOBAL: ${{ github.workspace }}/.gitconfig
run: |
git config --global url."https://${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/"
git config --global url."https://x-access-token:${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/"
terraform init
# - name: Terraform Workspace Creation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tf_plan_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
TF_WORKSPACE: ${{ inputs.gh_environment }}
GIT_CONFIG_GLOBAL: ${{ github.workspace }}/.gitconfig
run: |
git config --global url."https://${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/"
git config --global url."https://x-access-token:${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/"
terraform init
- name: Terraform Validate
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import tenacity
from fastapi_sqlalchemy import db
from langchain.chat_models import ChatOpenAI
from langchain.output_parsers import RegexParser
from langchain.prompts import PromptTemplate
from langchain.schema import (AIMessage, BaseMessage, HumanMessage,
SystemMessage)
Expand Down

0 comments on commit b731094

Please sign in to comment.