diff --git a/.github/workflows/api_doc_build.yml b/.github/workflows/api_doc_build.yml index 31ac26469a..7f88768c56 100644 --- a/.github/workflows/api_doc_build.yml +++ b/.github/workflows/api_doc_build.yml @@ -16,6 +16,16 @@ jobs: with: ref: bagatur/api_docs_build + - name: Set Git config + run: | + git config --local user.email "actions@github.com" + git config --local user.name "Github Actions" + + - name: Merge master + run: | + git fetch origin master + git merge origin/master -m "Merge master" --allow-unrelated-histories -X theirs + - name: Set up Python ${{ env.PYTHON_VERSION }} + Poetry ${{ env.POETRY_VERSION }} uses: "./.github/actions/poetry_setup" with: