\r\n \u003Clink rel=\"alternate icon\" type=\"image/png\" href=\"/favicons/favicon-light-default.png\" id=\"favicon-png\" />\r\n \u003Clink rel=\"icon\" type=\"image/svg+xml\" href=\"/favicons/favicon-light-default.svg\" id=\"favicon-svg\" />\r\n \u003Cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n \u003Cmeta name=\"theme-color\" content=\"#65a30d\" />\r\n \u003Ctitle>Woodpecker\u003C/title>\r\n \u003Cscript type=\"\" src=\"/web-config.js\">\u003C/script>\r\n \u003Cscript type=\"module\" crossorigin src=\"/assets/index-4b7b57db.js\">\u003C/script>\r\n \u003Clink rel=\"stylesheet\" href=\"/assets/index-f123c06a.css\">\r\n \u003C/head>\r\n \u003Cbody>\r\n \u003Cdiv id=\"app\">\u003C/div>\r\n\r\n \u003C/body>\r\n\u003C/html>\r\n```\r\n\r\nThat is basically an \"empty\" page. Let's look at the response code:\r\n```\r\n$ curl -I http://localhost:8000/foo\r\nHTTP/1.1 200 OK\r\nX-Woodpecker-Version: next-45319b24\r\n# ...etc.\r\n```\r\n\r\nThat should have returned 404.\r\n\r\nNow let's request a non-existent API endpoint:\r\n```\r\n$ curl -I http://localhost:8000/api/bar\r\nHTTP/1.1 200 OK\r\nX-Woodpecker-Version: next-45319b24\r\n# ...etc.\r\n```\r\n\r\nSame thing.\r\n\r\nNow let's request a real API endpoint, for healthchecks:\r\n```\r\n$ curl http://localhost:8000/api/healthz\r\n\u003C!DOCTYPE html>\r\n\u003Chtml lang=\"en\">\r\n # ...\r\n\u003C/html>\r\n\r\n$ curl -I http://localhost:8000/api/healthz\r\nHTTP/1.1 200 OK\r\nX-Woodpecker-Version: next-45319b24\r\n# ...etc.\r\n```\r\n\r\nSame thing. Also, it should not return a page, only a REST response.\r\n\r\nClean up:\r\n```\r\n$ apk delete curl\r\n$ exit\r\n```\r\n\r\nSummary:\r\n- both existent and non-existent endpoints and pages respond with 200\r\n- that means the `/api/healthz` endpoint is not working: it's a \"proof of life\" rather than \"proof of health\"\r\n- and the health endpoint should only return a json REST response, not a page\r\n\r\n### System Info\r\n\r\n```shell\r\nversion next-45319b24-alpine\r\ndockerised\r\n```\r\n\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Validations\r\n\r\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/master/CONTRIBUTING.md).\r\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\r\n- [X] Check that there isn't [already an issue](https://github.com/woodpecker-ci/woodpecker/issues) that reports the same bug to avoid creating a duplicate.\r\n- [X] Checked that the bug isn't fixed in the `next` version already [https://woodpecker-ci.org/faq#which-version-of-woodpecker-should-i-use]\r\n- [X] Check that this is a concrete bug. For Q&A join our [Discord Chat Server](https://discord.gg/fcMQqSMXJy) or the [Matrix room](https://matrix.to/#/#woodpecker:matrix.org).",[2038,2041],{"name":2039,"color":2040},"bug","d73a4a",{"name":1985,"color":1986},1947,"All pages and API endpoints (including non-existent ones) return 200","2025-03-16T13:50:31Z","https://github.com/woodpecker-ci/woodpecker/issues/1947",0.7400246,{"description":2048,"labels":2049,"number":2056,"owner":1994,"repository":1995,"state":1996,"title":2057,"updated_at":2058,"url":2059,"score":2060},"### Clear and concise description of the problem\r\n\r\nhttps://github.com/go-yaml/yaml seems unmaintained and also be lacking some features. https://github.com/goccy/go-yaml claims to solve these and is maintained.\r\n\r\n### Suggested solution\r\n\r\nSwitch to https://github.com/goccy/go-yaml\r\n\r\nAFAICS this would require that https://codeberg.org/6543/go-yaml2json switches to it.\r\n\r\n### Alternative\r\n\r\n_No response_\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Validations\r\n\r\n- [X] Checked that the feature isn't part of the `next` version already [https://woodpecker-ci.org/faq#which-version-of-woodpecker-should-i-use]\r\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/main/CONTRIBUTING.md).\r\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\r\n- [X] Check that there isn't already an [issue](https://github.com/woodpecker-ci/woodpecker/issues) that request the same feature to avoid creating a duplicate.",[2050,2053],{"name":2051,"color":2052},"refactor","4f8cc9",{"name":2054,"color":2055},"dependencies","006b75",2670,"Switch to a maintained go-yaml library?","2024-04-02T08:03:22Z","https://github.com/woodpecker-ci/woodpecker/issues/2670",0.74242216,{"description":2062,"labels":2063,"number":2068,"owner":1994,"repository":1995,"state":2069,"title":2070,"updated_at":2071,"url":2072,"score":2073},"### Component\n\nagent\n\n### Describe the bug\n\nI have a workflow that specifies an entrypoint, during execution the following error is shown\r\n\r\n`Additional property entrypoint is not allowed`\n\n### System Info\n\n```shell\nWoodpecker 2.3.0, docker.io/woodpeckerci/woodpecker-agent:v2.3.0\n```\n\n\n### Additional context\n\nPipeline snippet\r\n\r\n```\r\ncache-baseimages:\r\n image: gcr.io/kaniko-project/warmer\r\n entrypoint:\r\n - /kaniko/warmer\r\n - --dockerfile=./Dockerfile\r\n```\n\n### Validations\n\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\n- [X] Check that there isn't [already an issue](https://github.com/woodpecker-ci/woodpecker/issues) that reports the same bug to avoid creating a duplicate.\n- [X] Checked that the bug isn't fixed in the `next` version already [https://woodpecker-ci.org/faq#which-version-of-woodpecker-should-i-use]",[2064,2065],{"name":2039,"color":2040},{"name":2066,"color":2067},"backend/kubernetes","bfdadc",3477,"closed","Overriding 'entrypoint' in kubernetes backend does not work","2024-05-02T12:52:03Z","https://github.com/woodpecker-ci/woodpecker/issues/3477",0.67723745,{"description":2075,"labels":2076,"number":2078,"owner":1994,"repository":1995,"state":2069,"title":2079,"updated_at":2080,"url":2081,"score":2082},"### Clear and concise description of the problem\n\nIt seems like `index.html` hardcodes assets like this `/web-config.js`, etc.\r\n\r\nServing it under a path like `/ci` means that all URLs are broken.\r\n\r\nI didn't see anything in the documentation or existing issues about serving the web UI at a non-root (`/`) path.\n\n### Suggested solution\n\nPerhaps if `WOODPECKER_HOST` looks like this: `https://DOMAIN/ci`, then Woodpecker CI should infer the path from there and contructs its links correctly (adding a `/ci` prefix automatically).\n\n### Alternative\n\n_No response_\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Checked that the feature isn't part of the `next` version already [https://woodpecker-ci.org/faq#which-version-of-woodpecker-should-i-use]\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/master/CONTRIBUTING.md).\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\n- [X] Check that there isn't already an [issue](https://github.com/woodpecker-ci/woodpecker/issues) that request the same feature to avoid creating a duplicate.",[2077],{"name":1988,"color":1989},1636,"Make serving under a subpath work","2023-04-29T15:51:52Z","https://github.com/woodpecker-ci/woodpecker/issues/1636",0.69549114,{"description":2084,"labels":2085,"number":2087,"owner":1994,"repository":1995,"state":2069,"title":2088,"updated_at":2089,"url":2090,"score":2091},"### Component\n\nagent\n\n### Describe the bug\n\nWe are getting `exit code 2` as the ONLY error message for a pipeline, with no other information, and replacing previously gathered logs about the job being executed.\r\n\r\nI connected to the container running the step and did see it working fine and doing its things until my interactive shell section got killed by something (I guess by the agent) and its processes output logs, previously shown on the job page were replaced by this obscure `exit code 2`.\r\n\r\nSee https://trac.osgeo.org/postgis/ticket/5438 for details\n\n### System Info\n\n```shell\n{\"source\":\"https://github.com/woodpecker-ci/woodpecker\",\"version\":\"0.15.5\"}\n```\n\n\n### Additional context\n\n\r\n\n\n### Validations\n\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/master/CONTRIBUTING.md).\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\n- [X] Check that there isn't [already an issue](https://github.com/woodpecker-ci/woodpecker/issues) that reports the same bug to avoid creating a duplicate.\n- [X] Checked that the bug isn't fixed in the `next` version already [https://woodpecker-ci.org/faq#which-version-of-woodpecker-should-i-use]\n- [X] Check that this is a concrete bug. For Q&A join our [Discord Chat Server](https://discord.gg/fcMQqSMXJy) or the [Matrix room](https://matrix.to/#/#woodpecker:matrix.org).",[2086],{"name":2039,"color":2040},1951,"Logs missing and \"unknown error\" printed on exit code 2","2023-07-29T13:12:54Z","https://github.com/woodpecker-ci/woodpecker/issues/1951",0.71071154,{"description":2093,"labels":2094,"number":2096,"owner":1994,"repository":1995,"state":2069,"title":2097,"updated_at":2098,"url":2099,"score":2100},"### Component\r\n\r\nserver, cli\r\n\r\n### Describe the bug\r\n\r\nThis is not strictly a bug, but a design flaw. I first asked on the [discord server](https://discord.com/channels/838698813463724034/838698813463724037/1125415904134574080).\r\n\r\nSuppose I want to lock down my woodpecker server - I don't want random users from my gitea server to be able to log in. So I set `WOODPECKER_OPEN=false`. The docs state that in that case I need to create users manually, using the CLI.\r\n\r\nThe problem is the CLI needs an auth token, to be able to communicate with the server. But to generate such a token I must log in to the server, which I can't do. A chicken and egg problem! :baby_chick: :egg:\r\n\r\n### System Info\r\n\r\n```shell\r\nI am using 'next'\r\n```\r\n\r\n\r\n### Additional context\r\n\r\nIdea: have the CLI inside the server container, and allow it to communicate without an auth token.\r\n\r\nIdea: proposed by @6543:\r\n> gitea use an \"internal token\" for this tasks... we could do similar\r\n\r\n### Validations\r\n\r\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/master/CONTRIBUTING.md).\r\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\r\n- [X] Check that there isn't [already an issue](https://github.com/woodpecker-ci/woodpecker/issues) that reports the same bug to avoid creating a duplicate.\r\n- [X] Checked that the bug isn't fixed in the `next` version already [https://woodpecker-ci.org/faq#which-version-of-woodpecker-should-i-use]\r\n- [X] Check that this is a concrete bug. For Q&A join our [Discord Chat Server](https://discord.gg/fcMQqSMXJy) or the [Matrix room](https://matrix.to/#/#woodpecker:matrix.org).",[2095],{"name":1988,"color":1989},1923,"Internal token for CLI / API administration","2023-08-20T16:09:02Z","https://github.com/woodpecker-ci/woodpecker/issues/1923",0.7126421,["Reactive",2102],{},["Set"],["ShallowReactive",2105],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"DQNcpuTzWBRWAWqRh0H_oSYTeFt6KOPPD1K85jKeN7M":-1},"/woodpecker-ci/woodpecker/567"]