\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).",[2042,2043],{"name":2005,"color":2006},{"name":2016,"color":2017},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.77002436,{"description":2050,"labels":2051,"number":2053,"owner":1994,"repository":1995,"state":1996,"title":2054,"updated_at":2055,"url":2056,"score":2057},"### Clear and concise description of the problem\n\nPressing the \"Restart\" button will restart all workflows. This can quite time-consuming. Often what one wants is just to restart one or two workflows and not wait (nor waste resources) while waiting for all other workflows to run.\n\n### Suggested solution\n\nIt would be nice to have an additional button for \"Restart this workflow\".\n\n### Alternative\n\n_No response_\n\n### Additional context\n\nThis report is based on the version of Woodpecker next currently used by Codeberg CI.\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.",[2052],{"name":1988,"color":1989},1886,"Restart only one workflow","2024-06-18T23:44:14Z","https://github.com/woodpecker-ci/woodpecker/issues/1886",0.7756169,{"description":2059,"labels":2060,"number":2065,"owner":1994,"repository":1995,"state":1996,"title":2066,"updated_at":2067,"url":2068,"score":2069},"### Component\n\nagent\n\n### Describe the bug\n\nI’ve been encountering what appears to be a memory leak issue when running Woodpecker CI on a Kubernetes cluster. After running pipelines over time, I noticed that the memory usage of the Woodpecker agents and server steadily increases, eventually leading to performance degradation and, in some cases, the need for manual intervention to prevent the system from becoming unresponsive.\r\n\n\n### Steps to reproduce\n\nDeploy Woodpecker CI in a Kubernetes environment.\r\nRun multiple pipelines continuously over an extended period.\r\nMonitor memory usage of the Woodpecker agents and server, I will attach my grafana memory usage graph.\r\nNotice that memory consumption increases over time without being released after pipeline execution.\r\n\r\n\n\n### Expected behavior\n\nMemory usage should stabilize after pipeline executions are completed, and unused memory should be reclaimed properly.\n\n### System Info\n\n```shell\nWoodpecker Version: 2.7.0\r\nKubernetes Version: v1.29.4\r\nEnvironment: Running Woodpecker on a Kubernetes cluster\r\nNumber of agents: 10\n```\n\n\n### Additional context\n\nI am using golang profiling to find something about it, this is what I could find so far: \r\n\u003Cimg width=\"1270\" alt=\"Captura de Tela 2024-10-14 às 14 03 23\" src=\"https://github.com/user-attachments/assets/5e012749-a2a0-4bc5-ba52-5e5b5691599c\">\r\n\r\n\r\nHas anyone ever faced an issue like this?\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]",[2061,2062],{"name":2005,"color":2006},{"name":2063,"color":2064},"agent","ECBCDF",4228,"Memory Leak using woodpecker with kubernetes ","2024-11-21T17:56:26Z","https://github.com/woodpecker-ci/woodpecker/issues/4228",0.7769429,{"description":2071,"labels":2072,"number":2075,"owner":1994,"repository":1995,"state":2076,"title":2077,"updated_at":2078,"url":2079,"score":2080},"### Component\n\nweb-ui\n\n### Describe the bug\n\nopen a pipeline with its direct link, e.g. https://ci.woodpecker-ci.org/repos/3780/pipeline/11014 (or reload existing)\r\n\r\nthe \"Warnings\" tab has different positions, but it's not between workflows/configs:\r\n\r\n\r\nIt's working if opening from the list.\r\n\r\nExpected: \r\n\r\n\n\n### System Info\n\n```shell\nci.woodpecker-ci.org\n```\n\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/main/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).",[2073,2074],{"name":2005,"color":2006},{"name":1985,"color":1986},3021,"closed","Opening ui directly: tabs have wrong order","2025-01-20T14:21:07Z","https://github.com/woodpecker-ci/woodpecker/issues/3021",0.7421543,{"description":2082,"labels":2083,"number":2084,"owner":1994,"repository":1995,"state":2076,"title":2085,"updated_at":2086,"url":2087,"score":2088},"### Component\n\nserver, web-ui\n\n### Describe the bug\n\nDue to various technical limitations of my situation I want to run a woodpecker-ci server behind an apache reverse-proxy server, reachable by an url like `https://example.org/foo`.\r\nI.e. the web server does *NOT* simply forward all requests, but only requests for `https://example.com/foo/*` are forwarded to `localhost:8000/*`.\r\n\r\nThe issue is now, that even if I configure `WOODPECKER_HOST=https://example.org/foo`, the `index.html` that is served still references further assets by absolute paths like `/web-config.js`, which causes the browser to request `https://example.com/web-config.js` instead of `https://example.com/foo/web-config.js`.\r\n\r\nI can successfully run Gitea behind such a reverse-proxy, so the web server is not to blame here.\r\n\n\n### System Info\n\n```shell\n{\"source\":\"https://github.com/woodpecker-ci/woodpecker\",\"version\":\"next-6d86ec7fe7\"}\n```\n\n\n### Additional context\n\nHere is an example (running on local host)\r\n\r\n\n\n### Validations\n\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/main/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).",[],2477,"Server not honoring url path component of WOODPECKER_HOST","2023-09-19T16:30:20Z","https://github.com/woodpecker-ci/woodpecker/issues/2477",0.747389,{"description":2090,"labels":2091,"number":2097,"owner":1994,"repository":1995,"state":2076,"title":2098,"updated_at":2099,"url":2100,"score":2101},"### Component\n\nserver\n\n### Describe the bug\n\nExample: https://ci.woodpecker-ci.org/repos/3780/pipeline/13216\r\n\r\nProbably regression of #915 (@anbraten)\n\n### System Info\n\n```shell\nci.woodpecker-ci.org\n```\n\n\n### Additional context\n\n_No response_\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]",[2092,2093,2094],{"name":2005,"color":2006},{"name":2016,"color":2017},{"name":2095,"color":2096},"regression","7E192B",3399,"Restarting pipelines does not work","2024-02-17T09:19:30Z","https://github.com/woodpecker-ci/woodpecker/issues/3399",0.750183,["Reactive",2103],{},["Set"],["ShallowReactive",2106],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"0U21kIFiJEUYO0Eb94No_NBmJD-Ad1Qv2gsXIbsaaS8":-1},"/woodpecker-ci/woodpecker/3558"]