\r\n\n\n### Steps to reproduce\n\n.\n\n### Expected behavior\n\n_No response_\n\n### System Info\n\n```shell\n\"next-d126cf9e35\"\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]",[2001,2004],{"name":2002,"color":2003},"bug","d73a4a",{"name":2005,"color":2006},"ui","46DEA2",4677,"`tag` pipelines are missing avatar and commit title","2025-01-12T06:19:42Z","https://github.com/woodpecker-ci/woodpecker/issues/4677",0.7311374,{"description":2013,"labels":2014,"number":2019,"owner":1991,"repository":1992,"state":1993,"title":2020,"updated_at":2021,"url":2022,"score":2023},"we currently don't have a concept how to translate/interpreter the services into \"local backend\" and just ignore them.\r\n\r\nwe should have it that way so it works very similar to what the user know with docker or kube backend.",[2015,2016],{"name":1988,"color":1989},{"name":2017,"color":2018},"backend/local","bfdadc",3095,"Implement services for local backend","2025-02-10T13:40:24Z","https://github.com/woodpecker-ci/woodpecker/issues/3095",0.756728,{"description":2025,"labels":2026,"number":2031,"owner":1991,"repository":1992,"state":1993,"title":2032,"updated_at":2033,"url":2034,"score":2035},"https://ci.woodpecker-ci.org/repos/8987/pipeline/94/errors\r\n\r\nversion: current main",[2027,2028],{"name":2002,"color":2003},{"name":2029,"color":2030},"server","5D7A92",4249,"[Bug] MultiForge: second forge can not be used","2024-10-25T17:33:00Z","https://github.com/woodpecker-ci/woodpecker/issues/4249",0.7595854,{"description":2037,"labels":2038,"number":2041,"owner":1991,"repository":1992,"state":1993,"title":2042,"updated_at":2043,"url":2044,"score":2045},"### Clear and concise description of the problem\n\nCurrently, it is not possible to set env vars specific to a cron job.\r\n\n\n### Suggested solution\n\nAllow adding env vars per cron job in the web UI, like for example in GitLab:\r\n\r\n\r\n\n\n### Alternative\n\nI've got a use case, where I can't define the envs in the `.woodpecker.yaml`, like [described in the docs](https://woodpecker-ci.org/docs/usage/cron#add-a-new-cron-job) as I've got multiple different cron jobs, needing their own config.\r\n\r\nMaintaining different branches for this would not be very comfortable, especially in conjunction with renovate.\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.",[2039,2040],{"name":2029,"color":2030},{"name":1988,"color":1989},3291,"Cron: Add Environment Variables","2024-01-29T16:05:03Z","https://github.com/woodpecker-ci/woodpecker/issues/3291",0.7597929,{"description":2047,"labels":2048,"number":2050,"owner":1991,"repository":1992,"state":1993,"title":2051,"updated_at":2052,"url":2053,"score":2054},"### Component\r\n\r\nserver, agent\r\n\r\n### Describe the bug\r\n\r\nPipeline like\r\n\r\n```yaml\r\nvariables:\r\n- &node_image 'wener/node:docker'\r\n- ¬ify_image 'wener/woodpecker-feishu-bot'\r\n\r\n\r\npipeline:\r\n Notify Start:\r\n image: *notify_image\r\n settings:\r\n feishu_bot_url:\r\n from_secret: feishu_bot_url\r\n feishu_bot_secret:\r\n from_secret: feishu_bot_secret\r\n text: |\r\n Hello\r\n markdown: |\r\n 🏗️ 开始构建 \u003C%= env.CI_REPO_NAME %> #\u003C%= env.CI_BUILD_NUMBER %>\r\n \r\n - \u003C%= $.link(env.CI_COMMIT,env.CI_COMMIT_LINK) %> \u003C%=env.CI_COMMIT_MESSAGE.replaceAll(/\\n/g,';')%>\r\n \r\n 📦️ \u003C%=$.link(env.CI_REPO_NAME,env.CI_BUILD_LINK)%>\r\n\r\n Notify Done:\r\n image: *notify_image\r\n settings:\r\n feishu_bot_url:\r\n from_secret: feishu_bot_url\r\n feishu_bot_secret:\r\n from_secret: feishu_bot_secret\r\n markdown: |\r\n \u003C%= env.CI_PIPELINE_STATUS === 'success' ? '✅' : '❌' %> 构建完成 \u003C%= env.CI_REPO_NAME %> #\u003C%= env.CI_BUILD_NUMBER %>\r\n \r\n - \u003C%= env.CI_COMMIT_MESSAGE %>\r\n \r\n 📦️ \u003C%= $.link(env.CI_REPO_NAME, env.CI_BUILD_LINK) %> · ⏳\u003C%= env.CI_PIPELINE_FINISHED - env.CI_PIPELINE_STARTED %>\r\n when:\r\n status: [ success, failure ]\r\n\r\n```\r\n\r\nBut \r\n\r\n\u003Cimg width=\"373\" alt=\"image\" src=\"https://user-images.githubusercontent.com/1777211/227446873-b0195fee-c946-47ec-8b08-7b94d10c6bd6.png\">\r\n\r\nsometimes missing part of settings(url exists)\r\n\r\n\u003Cimg width=\"491\" alt=\"image\" src=\"https://user-images.githubusercontent.com/1777211/227447029-6966ee84-53fd-4568-8af4-f26f83acadb7.png\">\r\n\r\nsometime missing all\r\n\r\n\u003Cimg width=\"743\" alt=\"image\" src=\"https://user-images.githubusercontent.com/1777211/227447156-3c74fb6c-b5a6-469d-8dcd-44c9a965200e.png\">\r\n\r\nmulti pipeline, some is ok, some is not\r\n\r\n\u003Cimg width=\"688\" alt=\"image\" src=\"https://user-images.githubusercontent.com/1777211/227454994-b9dd2edb-9553-4aee-89e9-53e5b34837ea.png\">\r\n\r\nIf I use detach, no one will get the env\r\n\r\n\u003Cimg width=\"743\" alt=\"image\" src=\"https://user-images.githubusercontent.com/1777211/227459406-34984795-b976-4ec8-b180-d0c1e485265a.png\">\r\n\r\n\r\nNoting changed, just restart will get different result\r\n\r\n\r\n### System Info\r\n\r\n```shell\r\n- 0.15.7\r\n- k8s manifest https://github.com/wenerme/kube-stub-cluster/tree/main/dev-system/services/woodpecker\r\n```\r\n\r\n\r\n### Additional context\r\n\r\nnext version has the problem too, my workaround\r\n\r\n```yaml\r\n Notify Done:\r\n image: *notify_image\r\n failure: ignore\r\n settings:\r\n feishu_bot_url:\r\n from_secret: feishu_bot_url\r\n environment:\r\n PLUGIN_MARKDOWN: |\r\n \u003C%= env.CI_PIPELINE_STATUS === 'success' ? '✅' : '❌' %> 构建完成 \u003C%= env.CI_REPO_NAME %> #\u003C%= env.CI_BUILD_NUMBER %>\r\n \r\n - \u003C%= $.link(env.CI_COMMIT_SHA.slice(0,6),env.CI_COMMIT_LINK) %> \u003C%=env.CI_COMMIT_MESSAGE.replaceAll(/\\n/g,';')%>\r\n \r\n 📦️ \u003C%= $.link(env.CI_REPO_NAME, env.CI_BUILD_LINK) %> · ⏳\u003C%= env.CI_PIPELINE_FINISHED - env.CI_PIPELINE_STARTED %>\r\n when:\r\n status: [ success, failure ]\r\n```\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).",[2049],{"name":2002,"color":2003},1678,"Sometimes settings not passed to plugin","2023-10-02T08:14:46Z","https://github.com/woodpecker-ci/woodpecker/issues/1678",0.77155346,{"description":2056,"labels":2057,"number":2062,"owner":1991,"repository":1992,"state":2063,"title":2064,"updated_at":2065,"url":2066,"score":2067},"### Clear and concise description of the problem\n\nWhen committing with a structured message (e.g. following Conventional Commits specification), Woodpecker cramps the whole message together into one large string when displaying it in the repo commit list and the pipeline run title. This is usually pretty ugly and decreases readability. \r\n\r\nExample:\r\n\r\n\n\n### Suggested solution\n\nA new environment variable CI_COMMIT_MESSAGE_HEADER could be added which would be used to populate the strings mentioned above. This would of course require parsing the commit message first.\n\n### Alternative\n\nAlternatively, a UI section for the body and footer of the commit message could be added below the pipeline run title to display those variables. \r\n\r\nAll of the steps described above would still be necessary, but in addition, at least CI_COMMIT_MESSAGE_BODY (if one wants to treat body and footer as one) would have to be parsed and added as well.\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.",[2058,2059],{"name":2005,"color":2006},{"name":2060,"color":2061},"feature","180DBE",1489,"closed","Beautify display of commit messages with bodies and/or footers","2023-08-20T16:52:56Z","https://github.com/woodpecker-ci/woodpecker/issues/1489",0.7244963,{"description":2069,"labels":2070,"number":2073,"owner":1991,"repository":1992,"state":2063,"title":2074,"updated_at":2075,"url":2076,"score":2077},"### Clear and concise description of the problem\r\n\r\nIt doesn't make much sense to duplicate the repositories in the `last visited` block too, if there are \u003C=4 in total\r\n\r\n\r\nBesides, odd number of items look not so smooth.\r\n\r\n### Suggested solution\r\n\r\nDo not display `last visited` block if there are only four repositories\r\n\r\n### Alternative\r\n\r\nUse [repos pinning](https://github.com/woodpecker-ci/woodpecker/issues/4424#issuecomment-2493207007)\r\n\r\n### Additional context\r\n\r\nWoodpecker `next-9f0611d1a1`, Gitea `1.22.4`, Postgres `16`\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 [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.",[2071,2072],{"name":2005,"color":2006},{"name":1988,"color":1989},4517,"Do not show last visited repos if there is less than 4 in total","2025-01-20T15:23:54Z","https://github.com/woodpecker-ci/woodpecker/issues/4517",0.73317736,{"description":2079,"labels":2080,"number":2088,"owner":1991,"repository":1992,"state":2063,"title":2089,"updated_at":2090,"url":2091,"score":2092},"As noticed in several PRs the current option `NetrcOnlyTrusted` is limiting users, but on the other hand not really protecting them as well as netrc credentials could be stolen by a custom clone step with custom commands. \r\n\r\n- https://github.com/woodpecker-ci/woodpecker/pull/2585#issuecomment-1765756023\r\n- https://github.com/woodpecker-ci/woodpecker/pull/2214\r\n\r\nTo prevent this a `pass-netrc-to-plugins` option should replace the `NetrcOnlyTrusted` option. This option would contain list of images which will receive the netrc credentials if they are used as plugins. If the image however uses custom commands it wont get the credentials as those commands could be changed by others than the admin.\r\n\r\nThis will allow all steps and the clone step to use netrc credentials. It will however be breaking as it wont be possible anymore to use clone steps with custom commands.",[2081,2082,2085],{"name":2060,"color":2061},{"name":2083,"color":2084},"breaking","A1B83C",{"name":2086,"color":2087},"security","B60205",2601,"Replace `NetrcOnlyTrusted` with list of trusted plugins for netrc","2024-11-26T13:27:07Z","https://github.com/woodpecker-ci/woodpecker/issues/2601",0.7353375,{"description":2094,"labels":2095,"number":2097,"owner":1991,"repository":1992,"state":2063,"title":2098,"updated_at":2099,"url":2100,"score":2101},"Misses two things:\r\n1. user registries\r\n2. show global/org registries in org/repo as read-only\r\n\r\n_Originally posted by @qwerty287 in https://github.com/woodpecker-ci/woodpecker/issues/1672#issuecomment-2213434651_\r\n ",[2096],{"name":1988,"color":1989},3889,"User registries","2024-07-13T03:32:12Z","https://github.com/woodpecker-ci/woodpecker/issues/3889",0.7385598,["Reactive",2103],{},["Set"],["ShallowReactive",2106],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"M3PnaDeL7Tb040z2IYSuLj4AHCJSrcqShLRlWYwNcNE":-1},"/woodpecker-ci/woodpecker/4152"]