\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]",[2012,2013],{"name":1999,"color":2000},{"name":2014,"color":2015},"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.74286723,{"description":2022,"labels":2023,"number":2029,"owner":1988,"repository":1989,"state":1990,"title":2030,"updated_at":2031,"url":2032,"score":2033},"limit the add repo endpoint, to only return one page (in terms of pagination)\r\n\r\nand add a note (explizite hint) that if you can not find your desired repo to specify it in the searchbox to get it",[2024,2025,2026],{"name":2002,"color":2003},{"name":1985,"color":1986},{"name":2027,"color":2028},"ux","fef2c0",1774,"[UX] Add Repository, limit repos and add search hint","2024-04-02T08:05:24Z","https://github.com/woodpecker-ci/woodpecker/issues/1774",0.7428795,{"description":2035,"labels":2036,"number":2041,"owner":1988,"repository":1989,"state":1990,"title":2042,"updated_at":2043,"url":2044,"score":2045},"### Component\r\n\r\nserver, agent\r\n\r\n### Describe the bug\r\n\r\nThis is mainly a summary issue of https://github.com/woodpecker-ci/woodpecker/issues/833, https://github.com/woodpecker-ci/woodpecker/issues/2062, https://github.com/woodpecker-ci/woodpecker/issues/2911\rand #4349\n\r\nI've been trying to debug this without real success.\r\n\r\nI've been using the local backend, and can do the following observations:\r\n- cancel pipeline while running: completely broken. The commands are finished, the step is marked as success, the pipeline too (https://github.com/woodpecker-ci/woodpecker/issues/2911)\r\n- cancelling a pending pipeline seems to work for me\r\n\r\nOn ci.woodpecker-ci.org, I can see (uses docker backend):\r\n- cancel pending pipeline, agent is available: the pipeline starts anyways (this probably is #2062)\r\n- cancel running pipeline: works in general, but new status is failing but should be killed\r\n\r\n### System Info\r\n\r\n```shell\r\nnext\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/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 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).",[2037,2038],{"name":1999,"color":2000},{"name":2039,"color":2040},"summary","C3DC73",2875,"Fix pipeline cancelling","2024-12-08T12:10:57Z","https://github.com/woodpecker-ci/woodpecker/issues/2875",0.7529573,{"description":2047,"labels":2048,"number":2053,"owner":1988,"repository":1989,"state":2054,"title":2055,"updated_at":2056,"url":2057,"score":2058},"### Clear and concise description of the problem\r\n\r\nI'm trying to run a container image build step in my pipeline that uses [buildah](https://quay.io/repository/buildah/stable?tab=info). I'm running into a lot of permission errors like this:\r\n\r\n```\r\ntime=\"2023-10-07T19:59:26Z\" level=error msg=\"writing \\\"0 0 4294967295\\\\n\\\" to /proc/17/uid_map: write /proc/17/uid_map: operation not permitted\"\r\ntime=\"2023-10-07T19:59:26Z\" level=error msg=\"(Unable to determine exit status)\"\r\n```\r\n\r\nAfter some experimentation with podman and buildah containers on my cluster, I have determined that I need to configure a few different settings at the Pod level for this to work:\r\n\r\n- `metadata.annotations`: I need to be able to set `container.apparmor.security.beta.kubernetes.io/\u003Ccontainer_name>` to use a custom apparmor profile for my buildah container. I would like to use the `WOODPECKER_BACKEND_K8S_POD_ANNOTATIONS` env variable, but since the container names are randomly generated I'm not sure how to make this work.\r\n- `spec.securityContext`: The only way I have found to make buildah work is to run it as non-root. This means that I need to set `runAsUser`, `runAsGroup`, and `fsGroup` on the Pod level `securityContext` (not the container level).\r\n\r\n### Suggested solution\r\n\r\nAdding support for `securityContext` seems like it should be fairly straightforward. We could just follow that same approach that is currently used for `resources`, `nodeSelector`, etc. [documented here](https://woodpecker-ci.org/docs/next/administration/backends/kubernetes#resources).\r\n\r\nThe AppArmor profile is trickier since the container name needs to be included in the annotation key. I'm imagining a configuration like `backend_options.kubernetes.appArmorProfile` that could take all of the possible values for the annotation [documented here](https://kubernetes.io/docs/tutorials/security/apparmor/). Then, the pod generation logic would just look for this configuration and add the appropriate annotation if it's found.\r\n\r\n### Alternative\r\n\r\nI could disable AppArmor entirely, but that's not really advisable for a production environment. I could also try to find a way to get the buildah container running as root (it should be possible), but again, that's not ideal from a security perspective.\r\n\r\n### Additional context\r\n\r\nThis is somewhat of a follow up from #2510. I'm trying to get Woodpecker to run on my kubeadm/CRI-O based cluster running on Debian which I believe makes me some kind of leprechaun/unicorn/lochness monster. There definitely aren't many of us out there.\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.",[2049,2050],{"name":1985,"color":1986},{"name":2051,"color":2052},"backend/kubernetes","bfdadc",2545,"closed","Support AppArmor annotations and securityContext in kubernetes backend","2024-01-12T22:32:26Z","https://github.com/woodpecker-ci/woodpecker/issues/2545",0.7029872,{"description":2060,"labels":2061,"number":2063,"owner":1988,"repository":1989,"state":2054,"title":2064,"updated_at":2065,"url":2066,"score":2067},"### Component\r\n\r\nagent\r\n\r\n### Describe the bug\r\n\r\nWhen having a backend error in the config, i.e. a malformed env var, the step and build are marked as successful even though they should be marked as \"failed\". \r\n\r\n\r\n\r\n\r\nk8s backend\r\n\r\n\r\n### System Info\r\n\r\n```shell\r\n{\"source\":\"https://github.com/woodpecker-ci/woodpecker\",\"version\":\"next-6ab9f802\"}\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).",[2062],{"name":1999,"color":2000},1871,"Build is marked as \"successful\" although a backend error occurred","2025-01-10T21:25:48Z","https://github.com/woodpecker-ci/woodpecker/issues/1871",0.7282534,{"description":2069,"labels":2070,"number":2072,"owner":1988,"repository":1989,"state":2054,"title":2073,"updated_at":2074,"url":2075,"score":2076},"### Component\n\nserver\n\n### Describe the bug\n\nFrequently seeing this error:\r\n```\r\n{\"level\":\"error\",\"error\":\"pq: value too long for type character varying(255)\",\"time\":\"2022-08-16T21:03:05Z\",\"caller\":\"/woodpecker/src/github.com/woodpecker-ci/woodpecker/server/pipeline/create.go:107\",\"message\":\"failure to save build for stintel/openthread-ci\"}\r\n```\n\n### System Info\n\n```shell\n{\"source\":\"https://github.com/woodpecker-ci/woodpecker\",\"version\":\"next-e6d0b403\"}\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/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).",[2071],{"name":1999,"color":2000},1115,"pq: value too long for type character varying(255)","2022-10-12T22:47:13Z","https://github.com/woodpecker-ci/woodpecker/issues/1115",0.730546,{"description":2078,"labels":2079,"number":2081,"owner":1988,"repository":1989,"state":2054,"title":2082,"updated_at":2083,"url":2084,"score":2085},"### Component\r\n\r\nserver\r\n\r\n### Describe the bug\r\n\r\nIf we use `CI_COMMIT_TARGET_BRANCH` in events other than pull_request (like push), the user does not see the pipeline, and in the server logs we see the following error.\r\n```\r\nruntime error: invalid memory address or nil pointer dereference\r\n```\r\n\r\nSimple pipeline to reproduce the issue:\r\n```\r\npipeline:\r\n build-docker-image:\r\n image: plugins/docker\r\n settings:\r\n repo: ${CI_REPO}\r\n tags:\r\n - ${CI_COMMIT_TARGET_BRANCH}\r\n```\r\n\r\nI found a workaround to use `CI_COMMIT_BRANCH`. I think if these environment variables are not present, we could use `CI_COMMIT_BRANCH` by default.\r\n\r\n### System Info\r\n\r\n```shell\r\nversion:\r\n\r\n{\"source\":\"https://github.com/woodpecker-ci/woodpecker\",\"version\":\"0.15.6\"}\r\n```\r\n\r\nLatest version (`97605cfb46331fe1e6d8b8fb6b6f80fe9cece25e`) is also affected.\r\n\r\n\r\n### Additional context\r\n\r\n\r\n```\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: 4:35PM TRC github.com/woodpecker-ci/woodpecker/server/pipeline/filter.go:72 > config '.woodpecker.yml': &yaml.Config{When:constraint.When{Constraints:[]constraint.Constraint{constraint.Constraint{Ref:constraint.List{Include:[]string(nil), Exclude:[]string(nil)}, Repo:constraint.List{Include:[]string(nil), Exclude:[]string(nil)}, Instance:constraint.List{Include:[]string(nil), Exclude:[]string(nil)}, Platform:constraint.List{Include:[]string(nil), Exclude:[]string(nil)}, Environment:constraint.List{Include:[]string(nil), Exclude:[]string(nil)}, Event:constraint.List{Include:[]string(nil), Exclude:[]string(nil)}, Branch:constraint.List{Include:[]string{\"main\"}, Exclude:[]string(nil)}, Cron:constraint.List{Include:[]string(nil), Exclude:[]string(nil)}, Status:constraint.List{Include:[]string(nil), Exclude:[]string(nil)}, Matrix:constraint.Map{Include:map[string]string(nil), Exclude:map[string]string(nil)}, Local:types.BoolTrue{value:false}, Path:constraint.Path{Include:[]string(nil), Exclude:[]string(nil), IgnoreMessage:\"\"}, Evaluate:\"\"}}}, Cache:types.StringOrSlice(nil), Platform:\"\", Workspace:yaml.Workspace{Base:\"\", Path:\"\"}, Clone:yaml.Containers{Containers:[]*yaml.Container(nil)}, Pipeline:yaml.Containers{Containers:[]*yaml.Container{(*yaml.Container)(0xc000004780), (*yaml.Container)(0xc000004a00)}}, Services:yaml.Containers{Containers:[]*yaml.Container(nil)}, Networks:yaml.Networks{Networks:[]*yaml.Network(nil)}, Volumes:yaml.Volumes{Volumes:[]*yaml.Volume(nil)}, Labels:types.SliceorMap(nil), DependsOn:[]string(nil), RunsOn:[]string(nil), SkipClone:false, Branches:constraint.List{Include:[]string(nil), Exclude:[]string(nil)}}\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: 2023/03/10 16:35:42 [Recovery] 2023/03/10 - 16:35:42 panic recovered:\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: POST /hook?access_token=\u003CHIDDEN> HTTP/1.1\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: Host: \u003CHIDDEN>\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: Accept-Encoding: gzip\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: Content-Length: 5850\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: Content-Type: application/json\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: User-Agent: Go-http-client/1.1\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Forwarded-For: \u003CHIDDEN>\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Forwarded-Host: \u003CHIDDEN>\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Forwarded-Port: 443\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Forwarded-Proto: https\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Forwarded-Server: magenta\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Gitea-Delivery: \u003CHIDDEN>\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Gitea-Event: push\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Gitea-Event-Type: push\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Gitea-Signature: \u003CHIDDEN>\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Github-Delivery: \u003CHIDDEN>\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Github-Event: push\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Github-Event-Type: push\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Gogs-Delivery: \u003CHIDDEN>\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Gogs-Event: push\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Gogs-Event-Type: push\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Gogs-Signature: \u003CHIDDEN>\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Hub-Signature: \u003CHIDDEN>\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Hub-Signature-256: \u003CHIDDEN>\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: X-Real-Ip: \u003CHIDDEN>\r\nMar 10 16:35:42 magenta woodpecker-server[46477]:\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: runtime error: invalid memory address or nil pointer dereference\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: runtime/panic.go:260 (0x45a295)\r\nMar 10 16:35:42 magenta woodpecker-server[46477]: runtime/signal_unix.go:835 (0x45a265)\r\n\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).",[2080],{"name":1999,"color":2000},1611,"Invalid memory address when use CI_COMMIT_TARGET_BRANCH in push event","2025-01-10T20:46:07Z","https://github.com/woodpecker-ci/woodpecker/issues/1611",0.73068935,{"description":2087,"labels":2088,"number":2089,"owner":1988,"repository":1989,"state":2054,"title":2090,"updated_at":2091,"url":2092,"score":2093},"### Component\n\nserver\n\n### Describe the bug\n\nI am attempting to deduplicate CI/CD code and one obvious option would be to include `.woodpecker` as Git submodule\n\n### Steps to reproduce\n\nI moved YAML files to separate repo https://git.k-space.ee/k-space/container-image-pipeline and included it as submodule https://git.k-space.ee/k-space/wildflock/commit/86d0b37713e19b66ee48187ba2e4f24fb3d4e0d2\r\n\r\nWoodpecker doesn't see any pipeline elements now\n\n### Expected behavior\n\nWoodpecker would look up YAML files in the referenced Git submodule\n\n### System Info\n\n```shell\n{\"source\":\"https://github.com/woodpecker-ci/woodpecker\",\"version\":\"2.7.0\"}\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]",[],4050,"Can't include .woodpecker as Git submodule","2024-08-21T05:20:15Z","https://github.com/woodpecker-ci/woodpecker/issues/4050",0.7389707,["Reactive",2095],{},["Set"],["ShallowReactive",2098],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"cxPXXnQ3LOoCt1JnAbWWLQP_JCUo3kYKQGCf-RXPzRA":-1},"/woodpecker-ci/woodpecker/5041"]