From be7a109e3deaa13abfa6bb3f639ecd7030a99238 Mon Sep 17 00:00:00 2001 From: Dave Jansen Date: Mon, 14 Aug 2023 14:34:40 +0900 Subject: [PATCH] Disable commit-status. Deploys are working, but the action is throwing a 404 when attempting to pass data to this repository's /deployments endpoint, which Gitea doesn't have. I thought setting `enable-github-deployment` to `false` would prevent this from happening, but that doesn't seem to be the case. Perhaps setting this value will help. --- .gitea/workflows/netlify-deploy.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/netlify-deploy.yaml b/.gitea/workflows/netlify-deploy.yaml index b4e8077..4d27682 100644 --- a/.gitea/workflows/netlify-deploy.yaml +++ b/.gitea/workflows/netlify-deploy.yaml @@ -19,6 +19,7 @@ jobs: production-deploy: true github-token: ${{ secrets.GITHUB_TOKEN }} deploy-message: "Deployed from Gitea Action" + enable-commit-status: false enable-commit-comment: false enable-pull-request-comment: false overwrites-pull-request-comment: true