\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).",[2018,2021],{"name":2019,"color":2020},"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.7312967,{"description":2028,"labels":2029,"number":2036,"owner":1994,"repository":1995,"state":1996,"title":2037,"updated_at":2038,"url":2039,"score":2040},"https://github.com/woodpecker-ci/woodpecker/blob/4456da99c56437ef49c799a047ad3518023e6ce3/pipeline/rpc/peer.go#L54",[2030,2033],{"name":2031,"color":2032},"documentation","7D625D",{"name":2034,"color":2035},"refactor","4f8cc9",3322,"Rename Interface to actully reflect what it is used for","2024-02-07T00:03:34Z","https://github.com/woodpecker-ci/woodpecker/issues/3322",0.7471163,{"description":2042,"labels":2043,"number":2048,"owner":1994,"repository":1995,"state":2049,"title":2050,"updated_at":2051,"url":2052,"score":2053},"### Component\n\nagent\n\n### Describe the bug\n\npipeline file like this\r\n```yml\r\n---\r\nlabels:\r\n platform: linux/amd64\r\n backend: local\r\n\r\nsteps:\r\n hello:\r\n image: bash\r\n commands:\r\n - uname -a\r\n - pwd\r\n - echo $${CI_WORKSPACE}\r\n - ls -AFlh\r\n - echo \"hello world 你好\"\r\n - touch hello.txt\r\n - echo $${PATH}\r\n\r\n 测试:\r\n image: bash\r\n commands:\r\n - uname -a\r\n - pwd\r\n - ls -AFlh\r\n - echo \"hello world 你好 测试\"\r\n```\r\n\r\nCI_WORKSPACE set wrong in local backends\r\n\r\n\r\n\n\n### System Info\n\n```shell\n{\"source\":\"https://github.com/woodpecker-ci/woodpecker\",\"version\":\"1.0.3\"}\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).",[2044,2045],{"name":2019,"color":2020},{"name":2046,"color":2047},"backend/local","bfdadc",2610,"closed","CI_WORKSPACE set wrong in local backends","2023-10-23T10:54:12Z","https://github.com/woodpecker-ci/woodpecker/issues/2610",0.6964808,{"description":2055,"labels":2056,"number":2058,"owner":1994,"repository":1995,"state":2049,"title":2059,"updated_at":2060,"url":2061,"score":2062},"### Component\n\nweb-ui\n\n### Describe the bug\n\nWriting secrets with uppercase i.e. `OCI_TOKEN` is being interpreted as `oci_token` for the web UI although it stays as `OCI_TOKEN` in the workflow.\n\n### System Info\n\n```shell\n`{\"source\":\"https://github.com/woodpecker-ci/woodpecker\",\"version\":\"next-5bd12aa646\"}`\n```\n\n\n### Additional context\n\nMight be related to https://github.com/woodpecker-ci/woodpecker/issues/2084\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).",[2057],{"name":2019,"color":2020},2368,"Woodpecker UI isn't showing secrets's names with uppercase.","2024-02-20T13:20:27Z","https://github.com/woodpecker-ci/woodpecker/issues/2368",0.7133919,{"description":2064,"labels":2065,"number":2073,"owner":1994,"repository":1995,"state":2049,"title":2074,"updated_at":2075,"url":2076,"score":2077},"always sort default branch to be ontop of the list\r\n\r\n\r\n",[2066,2069,2070],{"name":2067,"color":2068},"ui","46DEA2",{"name":2005,"color":2006},{"name":2071,"color":2072},"good first issue","76ea72",2845,"make default branch first item in branch view in repos","2023-12-26T06:37:15Z","https://github.com/woodpecker-ci/woodpecker/issues/2845",0.7246667,{"description":2079,"labels":2080,"number":2084,"owner":1994,"repository":1995,"state":2049,"title":2085,"updated_at":2086,"url":2087,"score":2088},"to follow our rules ... (https://github.com/woodpecker-ci/woodpecker/blob/master/CONTRIBUTING.md#owners) here it goes:\r\n\r\n@woodpecker-ci/advisors @woodpecker-ci/maintainers\r\n\r\nOnly maintainers (& advisors) are eligible to vote or to be elected, and if somebody doesn't want to be elected please send comment in this thread. Every maintainer could send 2 or less votes to other maintainers on the following comments and cannot send the votes to them self. The voting is available from now **to 2022/12/31** or the point all people with vote rights have done so.\r\n\r\n---\r\nsee #633 for inspirations",[2081],{"name":2082,"color":2083},"governance","A46EFE",1467,"Voting for new owners between 2023/1/1 ~ 2023/12/31","2023-01-01T18:14:50Z","https://github.com/woodpecker-ci/woodpecker/issues/1467",0.7272592,{"description":2090,"labels":2091,"number":2093,"owner":1994,"repository":1995,"state":2049,"title":2094,"updated_at":2095,"url":2096,"score":2097},"### Clear and concise description of the problem\n\nAllow for the pipeline to cache artifacts, much like what Travis CI allows you to do: https://docs.travis-ci.com/user/caching/\r\n\r\nThis is currently possible in Woodpecker, but only if using volumes. It would be pretty neat if volumes weren't required and Woodpecker could cache items without exposing security issues.\n\n### Suggested solution\n\nWhen the pipeline completes, save the indicated directories somewhere. Then, on subsequent runs of the pipeline, mount that directory automatically. Perhaps automatic volume creation?\n\n### Alternative\n\nThe current method is insecure and should not be available to untrusted users.\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.",[2092],{"name":1988,"color":1989},758,"Allow caching artifacts without privileged containers and volumes","2023-08-20T20:32:08Z","https://github.com/woodpecker-ci/woodpecker/issues/758",0.73365206,{"description":2099,"labels":2100,"number":2102,"owner":1994,"repository":1995,"state":2049,"title":2103,"updated_at":2104,"url":2105,"score":2106},"### Component\n\nagent\n\n### Describe the bug\n\ni am using woodpecker:next docker image and configured for my gitea instance:\r\n```yml\r\n# docker-compose.yml \r\nversion: '3'\r\nnetworks:\r\n put_net:\r\n driver: bridge\r\n ipam:\r\n driver: default\r\n config:\r\n - \r\n subnet: 172.18.0.0/24\r\n gateway: 172.18.0.1\r\n\r\nservices:\r\n woodpecker-server:\r\n image: woodpeckerci/woodpecker-server:next\r\n networks:\r\n put_net:\r\n ipv4_address: 172.18.0.2\r\n extra_hosts:\r\n - \"n3s1.sbc-io.xyz:10.7.1.4\"\r\n ports:\r\n - 8999:8000\r\n expose:\r\n - \"9000\"\r\n volumes:\r\n - woodpecker-server-data:/mnt/m1/wpdata\r\n environment:\r\n - WOODPECKER_OPEN=true\r\n - WOODPECKER_HOST=https://woodpecker.example:3944\r\n - WOODPECKER_GITEA=true\r\n - WOODPECKER_GITEA_URL=https://gitea.example:3943/\r\n - WOODPECKER_GITEA_CLIENT=0c7d543a-b70a-461c-bb06-ef32c912789c\r\n - WOODPECKER_GITEA_SECRET=gto_secret\r\n - WOODPECKER_AGENT_SECRET=secretexample\r\n - WOODPECKER_DATABASE_DRIVER=postgres\r\n - WOODPECKER_DATABASE_DATASOURCE=postgres://woodpecker_u:passwd@172.17.0.1:5432/woodpecker_db?sslmode=disable\r\n - WOODPECKER_AUTHENTICATE_PUBLIC_REPOS=true\r\n - WOODPECKER_DEFAULT_CLONE_IMAGE=woodpeckerci/plugin-git:next\r\n - WOODPECKER_ADMIN=WoodpeckerBot\r\n\r\n woodpecker-agent:\r\n image: woodpeckerci/woodpecker-agent:next\r\n networks:\r\n put_net:\r\n ipv4_address: 172.18.0.3\r\n extra_hosts:\r\n - \"gitea.example:10.7.1.4\"\r\n command: agent\r\n restart: always\r\n depends_on:\r\n - woodpecker-server\r\n links:\r\n - woodpecker-server\r\n tmpfs:\r\n - /tmp\r\n volumes:\r\n - /var/run/docker.sock:/var/run/docker.sock\r\n environment:\r\n - WOODPECKER_SERVER=woodpecker-server:9000\r\n - WOODPECKER_AGENT_SECRET=secretexample\r\n\r\nvolumes:\r\n woodpecker-server-data:\r\n```\r\n\r\nnow there is a private repo in the list:\r\n\r\n\r\nbut Pipelines are failing:\r\n```\r\n+ git init -b main\r\nInitialized empty Git repository in /woodpecker/src/gitea.example/main-mirrors-private/proj/.git/\r\n+ git remote add origin \r\n+ git fetch --no-tags origin +refs/heads/main:\r\nfatal: no path specified; see 'git help pull' for valid url syntax\r\nexit status 128\r\n```\r\ni found that remote url is gone:\r\n`+ git remote add origin *[remote url]*` on line 3 above\r\n\r\nafter execute `Repair repository` on settings, I can restart this pipeline without issues:\r\n```\r\n+ git init -b main\r\nInitialized empty Git repository in /woodpecker/src/gitea.example/main-mirrors-private/proj/.git/\r\n+ git remote add origin https://gitea.example:3943/main-mirrors-private/proj.git\r\n+ git fetch --no-tags origin +refs/heads/main:\r\nFrom https://gitea.example:3943/main-mirrors-private/proj\r\n * branch main -> FETCH_HEAD\r\n * [new branch] main -> origin/main\r\n+ git reset --hard -q 7905a6e4214a2969b5106a19806e6c56442675e9\r\n+ git submodule update --init --recursive\r\n```\r\nbut after I push a new commit to trigger CI, the new pipeline failed:\r\n```\r\n+ git init -b main\r\nInitialized empty Git repository in /woodpecker/src/gitea.example/main-mirrors-private/proj/.git/\r\n+ git remote add origin \r\n+ git fetch --no-tags origin +refs/heads/main:\r\nfatal: no path specified; see 'git help pull' for valid url syntax\r\nexit status 128\r\n```\r\n\r\nlogs:\r\n```\r\nwp-conf-woodpecker-agent-1 | {\"level\":\"error\",\"error\":\"io: read/write on closed pipe\",\"time\":\"2022-09-07T02:47:06Z\",\"message\":\"copy limited logStream part\"}\r\nwp-conf-woodpecker-agent-1 | {\"level\":\"error\",\"error\":\"rpc error: code = Unknown desc = Proc finished with exitcode 128, \",\"time\":\"2022-09-07T02:47:07Z\",\"message\":\"grpc error: wait(): code: Unknown: rpc error: code = Unknown desc = Proc finished with exitcode 128, \"}\r\nwp-conf-woodpecker-agent-1 | {\"level\":\"warn\",\"repo\":\"main-mirrors-private/repo\",\"build\":\"21\",\"id\":\"61\",\"error\":\"rpc error: code = Unknown desc = Proc finished with exitcode 128, \",\"time\":\"2022-09-07T02:47:07Z\",\"message\":\"cancel signal received\"}\r\n```\n\n### System Info\n\n```shell\nhttps://woodpecker.example:3944/version\r\n{\r\n \"source\":\"https://github.com/woodpecker-ci/woodpecker\",\r\n \"version\":\"next-05d660f2\"\r\n}\r\n\r\nDocker Compose version v2.6.0\n```\n\n\n### Additional context\n\nlogs:\r\n```\r\nwp-conf-woodpecker-agent-1 | {\"level\":\"error\",\"error\":\"io: read/write on closed pipe\",\"time\":\"2022-09-07T02:47:06Z\",\"message\":\"copy limited logStream part\"}\r\nwp-conf-woodpecker-agent-1 | {\"level\":\"error\",\"error\":\"rpc error: code = Unknown desc = Proc finished with exitcode 128, \",\"time\":\"2022-09-07T02:47:07Z\",\"message\":\"grpc error: wait(): code: Unknown: rpc error: code = Unknown desc = Proc finished with exitcode 128, \"}\r\nwp-conf-woodpecker-agent-1 | {\"level\":\"warn\",\"repo\":\"main-mirrors-private/repo\",\"build\":\"21\",\"id\":\"61\",\"error\":\"rpc error: code = Unknown desc = Proc finished with exitcode 128, \",\"time\":\"2022-09-07T02:47:07Z\",\"message\":\"cancel signal received\"}\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] 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).",[2101],{"name":2019,"color":2020},1169,"gitea remote url disappears - fatal: no path specified","2024-04-18T14:47:43Z","https://github.com/woodpecker-ci/woodpecker/issues/1169",0.7354471,["Reactive",2108],{},["Set"],["ShallowReactive",2111],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"djxGKg6NWh9CY8jZQoRDMs8HNUdGi82PYHqn_icJGQ4":-1},"/woodpecker-ci/woodpecker/1824"]