diff --git a/.github/workflows/ted.yaml b/.github/workflows/ted.yaml index 4288d4d..e8e7e65 100644 --- a/.github/workflows/ted.yaml +++ b/.github/workflows/ted.yaml @@ -13,6 +13,10 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + - name: Configure Git author + run: | + git config --local user.email "action@github.com" + git config --local user.name "GitHub Action" - name: TED run uses: OpenGuidou/ted@v0.11 env: @@ -20,8 +24,10 @@ jobs: AZURE_OPENAI_ENDPOINT: ${{ secrets.AZURE_OPENAI_ENDPOINT }} AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }} EMBEDDING_DEPLOYMENT_NAME: ${{ secrets.EMBEDDING_DEPLOYMENT_NAME }} + GPT_DEPLOYMENT_NAME: ${{ secrets.GPT_DEPLOYMENT_NAME }} with: ted-flavor: python2-3 github_repository: ${{ github.repository }} github_token: ${{ github.token }} - branch: ${{ github.ref_name }} \ No newline at end of file + branch: ${{ github.ref_name }} +