\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).",[1984,1987],{"name":1985,"color":1986},"bug","d73a4a",{"name":1988,"color":1989},"server","5D7A92",1947,"woodpecker-ci","woodpecker","open","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.75218916,{"description":1999,"labels":2000,"number":2010,"owner":1991,"repository":1992,"state":1993,"title":2011,"updated_at":2012,"url":2013,"score":2014},"_Originally posted by @6543 in https://github.com/woodpecker-ci/woodpecker/pull/1627#discussion_r1139395959_\r\n ",[2001,2004,2007],{"name":2002,"color":2003},"ui","46DEA2",{"name":2005,"color":2006},"enhancement","7E1FE4",{"name":2008,"color":2009},"good first issue","76ea72",1637,"Display 404 page if api-client return 404 on requested resource","2023-11-13T10:16:14Z","https://github.com/woodpecker-ci/woodpecker/issues/1637",0.770173,{"description":2016,"labels":2017,"number":2025,"owner":1991,"repository":1992,"state":1993,"title":2026,"updated_at":2027,"url":2028,"score":2029},"### 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,2022],{"name":1988,"color":1989},{"name":2020,"color":2021},"feature","180DBE",{"name":2023,"color":2024},"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.77688503,{"description":2031,"labels":2032,"number":2043,"owner":1991,"repository":1992,"state":1993,"title":2044,"updated_at":2045,"url":2046,"score":2047},"### Clear and concise description of the problem\r\n\r\nas of https://github.com/woodpecker-ci/woodpecker/pull/2691\r\n\r\n~~blocked by https://github.com/swaggo/swag/issues/386~~ -> https://github.com/woodpecker-ci/woodpecker/pull/3897\r\n\r\n### Suggested solution\r\n\r\nauto-generate client from swagger docs so we don't have to do it manually\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.",[2033,2034,2037,2040],{"name":2005,"color":2006},{"name":2035,"color":2036},"refactor","4f8cc9",{"name":2038,"color":2039},"blocked","AF9796",{"name":2041,"color":2042},"lib","bfdadc",3053,"Generate sdk from swagger","2024-07-13T12:58:23Z","https://github.com/woodpecker-ci/woodpecker/issues/3053",0.7885144,{"description":2049,"labels":2050,"number":2052,"owner":1991,"repository":1992,"state":2053,"title":2054,"updated_at":2055,"url":2056,"score":2057},"### 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).",[2051],{"name":2020,"color":2021},1923,"closed","Internal token for CLI / API administration","2023-08-20T16:09:02Z","https://github.com/woodpecker-ci/woodpecker/issues/1923",0.7499259,{"description":2059,"labels":2060,"number":2062,"owner":1991,"repository":1992,"state":2053,"title":2063,"updated_at":2064,"url":2065,"score":2066},"### Clear and concise description of the problem\n\nThe Curve storage team is experimenting with this feature recently, and I think it could be very useful.\r\n\r\n\n\n### Suggested solution\n\nThere are already related implementations on GitHub.\r\n[ChatGPT-CodeReview](https://github.com/anc95/ChatGPT-CodeReview)\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.",[2061],{"name":2020,"color":2021},1673,"Can you provide a code review feature based on ChatGPT?","2023-03-23T02:07:56Z","https://github.com/woodpecker-ci/woodpecker/issues/1673",0.7553198,{"description":2068,"labels":2069,"number":2074,"owner":1991,"repository":1992,"state":2053,"title":2075,"updated_at":2076,"url":2077,"score":2078},"### Component\n\nserver\n\n### Describe the bug\n\nThe current implementation of Bitbucket Forge makes an excessive number of API requests to fetch all repositories and the current user permissions associated with them. It performs an extra API call per every repository found.\r\n\r\nThis significantly impacts users, particularly those with access to numerous repositories, especially when the Bitbucket API experiences high latency. It can take minutes after logging in or pressing the 'Reload Repositories' button.\r\n\n\n### System Info\n\n```shell\n{\"source\":\"https://github.com/woodpecker-ci/woodpecker\",\"version\":\"dev\"}\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).",[2070,2071],{"name":2005,"color":2006},{"name":2072,"color":2073},"forge/bitbucket","E96280",3210,"Slow fetch of repos info after login when using Bitbucket Cloud forge","2024-01-19T03:15:59Z","https://github.com/woodpecker-ci/woodpecker/issues/3210",0.7565619,{"description":2080,"labels":2081,"number":2089,"owner":1991,"repository":1992,"state":2053,"title":2090,"updated_at":2091,"url":2092,"score":2093},"- mention how settings are de-serialized\r\n- mention build-in-env-vars\r\n- mention best practics\r\n- mention multiarch build, as official immages try to always have linux/amd64 & linux/arm64 images, and so other plugins should try to do so to",[2082,2085,2088],{"name":2083,"color":2084},"plugin","887B27",{"name":2086,"color":2087},"documentation","7D625D",{"name":2008,"color":2009},1389,"Document how to create an own plugin","2023-12-30T20:24:09Z","https://github.com/woodpecker-ci/woodpecker/issues/1389",0.7612658,{"description":2095,"labels":2096,"number":2097,"owner":1991,"repository":1992,"state":2053,"title":2098,"updated_at":2099,"url":2100,"score":2101},"I have a fresh WP 2.5 setup in Kubernetes (docker desktop) that uses the newly introduced separate URL for gitea access ( https://github.com/woodpecker-ci/woodpecker/issues/3470 )\r\n\r\nI have these settings in woodpecker:\r\n\r\n(for browser access / oauth)\r\nname: WOODPECKER_DEV_GITEA_OAUTH_URL\r\nvalue: \"http://gitea.localhost\"\r\n\r\n(for access from woodpecker)\r\nname: WOODPECKER_GITEA_URL\r\nvalue: \"http://gitea-http.gitea:3000\"\r\n\r\nAnd this in gitea:\r\nname: GITEA__server__ROOT_URL\r\nvalue: \"http://gitea-http.gitea:3000\"\r\n\r\nWhen webhooks are delivered, gitea gets the response HTTP 403 with the body \"failure to verify token from hook. Expected manager/php-app, got \" (really blank at the end, I did not truncate the message).\r\n\r\nI assume this is the origin:\r\nhttps://github.com/woodpecker-ci/woodpecker/blob/ed7fe029796a1ca6f119a7458ae5c7f23bf97aa1/server/api/hook.go#L204\r\n\r\nIt worked in WP 2.4 (when I did not use separate URLs though)",[],3775,"Gitea Webhook fails with Woodpecker 2.5.0","2024-06-13T19:11:31Z","https://github.com/woodpecker-ci/woodpecker/issues/3775",0.76136315,{"description":2103,"labels":2104,"number":2108,"owner":1991,"repository":1992,"state":2053,"title":2109,"updated_at":2110,"url":2111,"score":2112},"### Clear and concise description of the problem\n\nAs a colorblind user, it is difficult for me to see the status of steps in pipelines.\n\n### Suggested solution\n\nChange the colored dot in the web-ui over to an icon. We could possibly reuse the icons used to display the status in the workflow view.\r\n\r\nThe colored dot in question:\r\n\r\n\r\n\r\nThis is the icon I think we could use (of course \"all of them\" depending on status).\r\n\r\n\n\n### Alternative\n\nOther icons or leave it be? It's not a huge inconvenience (though I'm not fully colorblind)\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/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.",[2105,2106,2107],{"name":2002,"color":2003},{"name":2005,"color":2006},{"name":2023,"color":2024},1393,"Help color blind people by changing dots to icons","2022-11-15T08:49:22Z","https://github.com/woodpecker-ci/woodpecker/issues/1393",0.76403207,["Reactive",2114],{},["Set"],["ShallowReactive",2117],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"GmEHXmlY8RXavupjGIjDKgfm6S7Yx2SckoENJn8ad70":-1},"/woodpecker-ci/woodpecker/2980"]