\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).",[2025,2028],{"name":2026,"color":2027},"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.69964373,{"description":2035,"labels":2036,"number":2041,"owner":1994,"repository":1995,"state":1996,"title":2042,"updated_at":2043,"url":2044,"score":2045},"See https://github.com/woodpecker-ci/woodpecker/pull/2923 and https://github.com/woodpecker-ci/woodpecker/issues/2901 for initial discussion. Currently, a temporary pipeline is stored in DB and deleted on error afterwards, but we should try to find a different, more clean way to fix the issue.",[2037,2038],{"name":1985,"color":1986},{"name":2039,"color":2040},"refactor","4f8cc9",2940,"Improve pipeline creation (do not create temporary pipeline)","2023-12-13T13:29:27Z","https://github.com/woodpecker-ci/woodpecker/issues/2940",0.709094,{"description":2047,"labels":2048,"number":2050,"owner":1994,"repository":1995,"state":1996,"title":2051,"updated_at":2052,"url":2053,"score":2054},"see https://github.com/woodpecker-ci/woodpecker/issues/558#issuecomment-987456959\r\n\r\nIt could happen that the original user who activated a repo reject there oauth2 access or left the project, dont have the rights anymore ...\r\nOr you want to set it to a \"bot\" account ...\r\n\r\nin all cases you at the moment have to change that in the database manually :/ - change that!\r\n\r\nNOTE: the repair now set it to the current user: #4128",[2049],{"name":1991,"color":1992},571,"let repo admin change the user account who do the api to send back the status","2024-09-20T21:24:09Z","https://github.com/woodpecker-ci/woodpecker/issues/571",0.71010965,{"description":2056,"labels":2057,"number":2062,"owner":1994,"repository":1995,"state":2063,"title":2064,"updated_at":2065,"url":2066,"score":2067},"### 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]",[2058,2059],{"name":2026,"color":2027},{"name":2060,"color":2061},"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.5952015,{"description":2069,"labels":2070,"number":2072,"owner":1994,"repository":1995,"state":2063,"title":2073,"updated_at":2074,"url":2075,"score":2076},"### 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.",[2071],{"name":2005,"color":2006},1636,"Make serving under a subpath work","2023-04-29T15:51:52Z","https://github.com/woodpecker-ci/woodpecker/issues/1636",0.63569957,{"description":2078,"labels":2079,"number":2092,"owner":1994,"repository":1995,"state":2063,"title":2093,"updated_at":2094,"url":2095,"score":2096},"# Lets collect ideas for the pipeline config format. 🚀 \r\n\r\nWe should have a critical look at the current config format and propose all possible changes to the format with the following aspects in mind:\r\n- allowing new users to easily understand configs and write own one (=> exp. one way to solve a problem)\r\n- be as generic and extendable as possible\r\n- stick to standards to allow the usage of (parsing) libraries with minimal additional code required\r\n\r\n# General feature requests for the pipeline (can be implemented in the current version already if possible)\r\n\r\n- pipeline config changes\r\n - [x] ~~remove support for `root.pipeline.[step].commands` string values in favor of array lists~~ -> single string is array with one item\r\n - [x] move `root.platform`, `root.branches`, `root.labels`, `root.runs_on`, `root.depends_on` to `root.when.xxx` to match step filters #283\r\n - [x] make `root.when` and `root.pipeline.[step].when` an array of the current with items using the current settings to allow ORs https://github.com/woodpecker-ci/woodpecker/issues/686 (#770,...)\r\n -> non breaking\r\n - [ ] remove `root.Cache` and functionality in favor of plugins? -> need more discussion\r\n - [x] allow multiple when filters #686 \r\n - [x] replace `group` with `needs` if no `needs` is set step will start directly\r\n - [ ] use `needs` instead of `group` #1860\r\n\r\nfrom #393\r\n\r\n# Current idea:\r\n\r\nVersion could be used to run pipeline parsing with some kind of sub-program for that specific version.\r\n\r\nBackend data format / type should not depend on docker types. For example we should not have `networks` as a property in steps.\r\n\r\n```yml\r\nversion: 2\r\n\r\ndepends_on:\r\n - test\r\n - web\r\n\r\nwhen:\r\n - branch: main\r\n event: push\r\n path: docs/\r\n - event: pull_request\r\n path: docs/\r\n\r\nsteps:\r\n - name: Test\r\n plugin: test-java:next\r\n - name: Build\r\n image: node:16-alpine\r\n commands:\r\n - npm run build\r\n depends_on:\r\n - Test\r\n```\r\n",[2080,2083,2086,2089],{"name":2081,"color":2082},"breaking","A1B83C",{"name":2084,"color":2085},"pipeline-config","1BE540",{"name":2087,"color":2088},"summary","C3DC73",{"name":2090,"color":2091},"feedback","4B7070",567,"RFC: Pipeline config","2023-08-20T15:58:32Z","https://github.com/woodpecker-ci/woodpecker/issues/567",0.6719263,{"description":2098,"labels":2099,"number":2101,"owner":1994,"repository":1995,"state":2063,"title":2102,"updated_at":2103,"url":2104,"score":2021},"Hi,\r\n\r\nMy project is using Woodpecker from master, inside docker. For a project with multiple pipeline stages (using `.woodpecker/*.yml` files), some stages are immediately hitting \"This step has been canceled.\" at the very first step of that stage.\r\n\r\n\r\n\r\nI don't know what caused it to be cancelled. No person clicked the button.\r\n\r\nIt's happening on both normal docker/linux/amd64 agents, and also, on the windows/mac runners too.\r\n\r\nThere's no error messages in the woodpecker-master log.\r\n\r\nIn the woodpecker-agent log I do see this appear:\r\n\r\n```\r\n{\"level\":\"error\",\"error\":\"rpc error: code = Unknown desc = queue: task canceled\",\"time\":\"2022-11-29T03:43:11Z\",\"message\":\"grpc error: wait(): code: Unknown: rpc error: code = Unknown desc = queue: task canceled\"}\r\n{\"level\":\"warn\",\"repo\":\"XXXXXXXX\",\"build\":\"1120\",\"id\":\"51653\",\"error\":\"rpc error: code = Unknown desc = queue: task canceled\",\"time\":\"2022-11-29T03:43:11Z\",\"message\":\"cancel signal received\"}\r\n```\r\n\r\n- How can I troubleshoot this further?\r\n\r\n---\r\n\r\n`{\"source\":\"https://github.com/woodpecker-ci/woodpecker\",\"version\":\"next-da997fa3\"}`",[2100],{"name":2026,"color":2027},1457,"Unexpected \"This step has been canceled.\" error messages","2022-11-30T03:42:27Z","https://github.com/woodpecker-ci/woodpecker/issues/1457",["Reactive",2106],{},["Set"],["ShallowReactive",2109],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"uo4ff4TcCtxYNnzh3p4o1z1u4etR7j8M_Pz_9sTviSE":-1},"/woodpecker-ci/woodpecker/2763"]