From 1c4739bf65acf68c01c8fc0462fddc00fca7c0b6 Mon Sep 17 00:00:00 2001 From: Phoevos Kalemkeris Date: Tue, 1 Jul 2025 12:15:50 +0100 Subject: [PATCH] fix: Revert github-push-action branch change In a previous commit, the branch for the 'github-push-action' in the API docs workflow was accidentally changed from 'master' to 'main', which doesn't exist in the upstream repository. This commit reverts the change to ensure the workflow continues to function correctly. Signed-off-by: Phoevos Kalemkeris --- .github/workflows/api-docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/api-docs.yaml b/.github/workflows/api-docs.yaml index 261a2af..435514e 100644 --- a/.github/workflows/api-docs.yaml +++ b/.github/workflows/api-docs.yaml @@ -57,7 +57,7 @@ jobs: exit 0 fi - name: Update OpenAPI docs - uses: ad-m/github-push-action@main + uses: ad-m/github-push-action@master with: branch: gh-pages github_token: ${{ secrets.GITHUB_TOKEN }}