From f910cc82454a0b572fed863e16e5beac9d5ea592 Mon Sep 17 00:00:00 2001 From: Guillaume Doussin Date: Wed, 5 Jun 2024 09:30:31 +0200 Subject: [PATCH 1/3] Add missing en --- .github/workflows/ted.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ted.yaml b/.github/workflows/ted.yaml index 71970d1..956beb1 100644 --- a/.github/workflows/ted.yaml +++ b/.github/workflows/ted.yaml @@ -20,5 +20,6 @@ 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 \ No newline at end of file + ted-flavor: python2-3 From f49813cadcfac59d6025b442b9e0c12a7582fb46 Mon Sep 17 00:00:00 2001 From: Guillaume Doussin Date: Wed, 5 Jun 2024 09:44:01 +0200 Subject: [PATCH 2/3] update ted --- .github/workflows/ted.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ted.yaml b/.github/workflows/ted.yaml index 956beb1..7b3f9a8 100644 --- a/.github/workflows/ted.yaml +++ b/.github/workflows/ted.yaml @@ -14,7 +14,7 @@ jobs: with: fetch-depth: 0 - name: TED run - uses: OpenGuidou/ted@v0.9 + uses: OpenGuidou/ted@v0.10 env: OPENAI_API_VERSION: ${{ secrets.OPENAI_API_VERSION }} AZURE_OPENAI_ENDPOINT: ${{ secrets.AZURE_OPENAI_ENDPOINT }} From aab35056ce5513acd55ee12b66acce0004a7b58d Mon Sep 17 00:00:00 2001 From: Guillaume Doussin Date: Wed, 5 Jun 2024 09:51:05 +0200 Subject: [PATCH 3/3] add git author --- .github/workflows/ted.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ted.yaml b/.github/workflows/ted.yaml index 7b3f9a8..02a1935 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.10 env: