\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).",[2004,2007],{"name":2005,"color":2006},"bug","d73a4a",{"name":2008,"color":2009},"server","5D7A92",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.7273321,{"description":2016,"labels":2017,"number":2023,"owner":1994,"repository":1995,"state":1996,"title":2024,"updated_at":2025,"url":2026,"score":2027},"### Clear and concise description of the problem\n\nThe \"Run pipeline\" button in the UI, which is triggered for `\"event: manual\"`, currently executes all existing pipeline definitions under `.woodpecker/`.\n\n### Suggested solution\n\nThe button could allow invoking specific pipelines only instead of starting all existing ones.\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/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 request the same feature to avoid creating a duplicate.",[2018,2019,2020],{"name":2008,"color":2009},{"name":1988,"color":1989},{"name":2021,"color":2022},"ux","fef2c0",2763,"Run pipeline: allow executing a single/specific pipeline if more than one pipeline definitions exist","2023-12-20T12:51:01Z","https://github.com/woodpecker-ci/woodpecker/issues/2763",0.72760427,{"description":2029,"labels":2030,"number":2035,"owner":1994,"repository":1995,"state":1996,"title":2036,"updated_at":2037,"url":2038,"score":2039},"### Clear and concise description of the problem\n\nA repo can use many secrets, some of which may have non-obvious origins. I find it would be useful to be able to add notes to a secret, which could contain any information that the user deems helpful for them. An example use case would be:\r\nsecret_name: SOME_API_TOKEN\r\nsecret_value: \u003Csuper_secret_value>\r\ndescription: \"Used by process xxx. Expiry date: ddmmyy, renew by going to ..., include API scope blablabla\"\n\n### Suggested solution\n\nThis could be a simple plain text field, visible to anyone who has access to create/modify secrets, along with the secret name. The aim is to provide hints/document the secret.\r\nI noticed that gitlab recently added this to their CI, which I find extremely helpful.\r\nIn a perfect world, secrets would be generated in code, with proper documentation, but it's not always possible in tiny projects.\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 [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.",[2031,2032],{"name":2008,"color":2009},{"name":2033,"color":2034},"enhancement","7E1FE4",3558,"Add description to secrets","2024-03-27T08:39:44Z","https://github.com/woodpecker-ci/woodpecker/issues/3558",0.73803556,{"description":2041,"labels":2042,"number":2045,"owner":1994,"repository":1995,"state":1996,"title":2046,"updated_at":2047,"url":2048,"score":2049},"Related issues: https://github.com/woodpecker-ci/woodpecker/issues/178 https://github.com/woodpecker-ci/woodpecker/issues/33\r\n\r\nOur problem:\r\n- a build can take 10-15 minutes\r\n- agent run as kubernetes pods\r\n- if an agent dies immediately (no graceful termination, for instance the node instantly goes away) and the build is running, the build stays in a \"running\" state until the timeout kicks in (by default 60 minutes)\r\n- instead of finishing as a failure (timeout), the build is rescheduled on a different agent, and starts over; it has the same build number and build steps run again as the same \"original\" build\r\n\r\nThis breaks flows where we assume the build number to be unique (as Restarting from the UI normally generates a new build number).\r\n\r\nAny chance this can be configured?",[2043,2044],{"name":2008,"color":2009},{"name":2033,"color":2034},220,"Agent interrupted builds restarted - is this desired/configurable?","2024-09-16T09:38:36Z","https://github.com/woodpecker-ci/woodpecker/issues/220",0.7481234,{"description":2051,"labels":2052,"number":2057,"owner":1994,"repository":1995,"state":1996,"title":2058,"updated_at":2059,"url":2060,"score":2061},"wait for services to be started (and if support wait for status=ready report)\r\n\r\ntldr: improve sleep (https://woodpecker-ci.org/docs/next/usage/services#initialization) with more advanced checks, if backend supports it (https://docs.docker.com/compose/startup-order/#control-startup)",[2053,2056],{"name":2054,"color":2055},"agent","ECBCDF",{"name":2033,"color":2034},1768,"wait for services to be startet","2023-05-20T16:48:04Z","https://github.com/woodpecker-ci/woodpecker/issues/1768",0.7551075,{"description":2063,"labels":2064,"number":2069,"owner":1994,"repository":1995,"state":1996,"title":2070,"updated_at":2071,"url":2072,"score":2073},"make `pipeline logs` follow logs if they still run\r\n\r\nand let them be addressed by workflow-&step-name",[2065,2066],{"name":2033,"color":2034},{"name":2067,"color":2068},"cli","1d76db",1824,"[CLI] pipeline logs follow logs if still running","2023-06-05T01:42:27Z","https://github.com/woodpecker-ci/woodpecker/issues/1824",0.7564193,{"description":2075,"labels":2076,"number":2080,"owner":1994,"repository":1995,"state":2081,"title":2082,"updated_at":2083,"url":2084,"score":2085},"always sort default branch to be ontop of the list\r\n\r\n\r\n",[2077,2078,2079],{"name":1985,"color":1986},{"name":2033,"color":2034},{"name":1991,"color":1992},2845,"closed","make default branch first item in branch view in repos","2023-12-26T06:37:15Z","https://github.com/woodpecker-ci/woodpecker/issues/2845",0.7018089,{"description":2087,"labels":2088,"number":2089,"owner":1994,"repository":1995,"state":2081,"title":2090,"updated_at":2091,"url":2092,"score":2093},"### 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.72045666,{"description":2095,"labels":2096,"number":2101,"owner":1994,"repository":1995,"state":2081,"title":2102,"updated_at":2103,"url":2104,"score":2105},"For storage intensive pipelines would be nice to have an option to put workspace in ram disk (i.e. tmpfs); will be huge relief for systems with plenty of RAM and slower storage; pipelines will probably be much faster too.\r\n\r\nSimilar drone issue:\r\nhttps://discourse.drone.io/t/make-drone-src-workspace-a-tmpfs/8040\r\n\r\nRegards,\r\nPaweł\r\n",[2097,2098],{"name":1988,"color":1989},{"name":2099,"color":2100},"pipeline-config","1BE540",186,"Option to place workspace and service storage in RAM","2023-08-20T20:35:11Z","https://github.com/woodpecker-ci/woodpecker/issues/186",0.7214591,["Reactive",2107],{},["Set"],["ShallowReactive",2110],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"qTkolJ8aHTx_yH4REXlOhaYAx_3bWVhENOwuVRBTbMs":-1},"/woodpecker-ci/woodpecker/3021"]