{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":145540147,"defaultBranch":"master","name":"matrix-corporal","ownerLogin":"devture","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2018-08-21T09:24:04.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/6266966?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1723107331.0","currentOid":""},"activityList":{"items":[{"before":"f77300f2796621bd82cdd04be2d006aec7ff173b","after":"5287cb81c82cd3b951c2a099b4697c3e0b384559","ref":"refs/heads/master","pushedAt":"2024-08-08T08:55:31.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"spantaleev","name":"Slavi Pantaleev","path":"/spantaleev","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/388669?s=80&v=4"},"commit":{"message":"Release 3.0.0\n\nRelated to https://github.com/devture/matrix-corporal/pull/32","shortMessageHtmlLink":"Release 3.0.0"}},{"before":"40be151ddd352cc7bdb16550cd733422222e8099","after":"f77300f2796621bd82cdd04be2d006aec7ff173b","ref":"refs/heads/master","pushedAt":"2024-08-08T06:45:55.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"spantaleev","name":"Slavi Pantaleev","path":"/spantaleev","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/388669?s=80&v=4"},"commit":{"message":"Add power levels handling (#32)\n\n* Add power levels for user in room\r\n\r\n* Group set powers actions in computator + in reconciler\r\n\r\nFix PR\r\n\r\nFixes set power + leaves actions in computator\r\n\r\n* Fix + add tests\r\n\r\nRemove TODO\r\n\r\n* Fix field name typo\r\n\r\n* Update documentation (joinedRoomIds -> joinedRooms) and bump policy schema version\r\n\r\nRelated to https://github.com/devture/matrix-corporal/pull/32\r\n\r\n---------\r\n\r\nCo-authored-by: Slavi Pantaleev ","shortMessageHtmlLink":"Add power levels handling (#32)"}},{"before":"fbe5f6c900ae64ad6271dd10c2be9253583b6b29","after":"40be151ddd352cc7bdb16550cd733422222e8099","ref":"refs/heads/master","pushedAt":"2024-07-04T18:38:14.000Z","pushType":"push","commitsCount":6,"pusher":{"login":"spantaleev","name":"Slavi Pantaleev","path":"/spantaleev","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/388669?s=80&v=4"},"commit":{"message":"Prepare 2.8.0 release","shortMessageHtmlLink":"Prepare 2.8.0 release"}},{"before":null,"after":"bc3a04726f8bec1f393cb9696f87fef9f7738f94","ref":"refs/heads/dependabot/go_modules/golang.org/x/crypto-0.17.0","pushedAt":"2023-12-19T00:07:20.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump golang.org/x/crypto from 0.16.0 to 0.17.0\n\nBumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.16.0 to 0.17.0.\n- [Commits](https://github.com/golang/crypto/compare/v0.16.0...v0.17.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/crypto\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump golang.org/x/crypto from 0.16.0 to 0.17.0"}},{"before":"581c63d4d7394bb19895b058cc1366c60961a65c","after":"fbe5f6c900ae64ad6271dd10c2be9253583b6b29","ref":"refs/heads/master","pushedAt":"2023-12-16T06:49:46.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"spantaleev","name":"Slavi Pantaleev","path":"/spantaleev","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/388669?s=80&v=4"},"commit":{"message":"Move services to the top of .woodpecker.yml and fix alignment issue","shortMessageHtmlLink":"Move services to the top of .woodpecker.yml and fix alignment issue"}},{"before":"eaf05a9c18470b0af55e6557124d21f00db97e4a","after":"581c63d4d7394bb19895b058cc1366c60961a65c","ref":"refs/heads/master","pushedAt":"2023-12-15T18:13:40.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"spantaleev","name":"Slavi Pantaleev","path":"/spantaleev","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/388669?s=80&v=4"},"commit":{"message":"Pin woodpeckerci/plugin-docker-buildx version and switch to docker-in-docker\n\nFor some reason, building previously worked even without docker-in-docker.\nSupposedly, it was using Docker on the host, the socket of which is\nexposed to the Woodpecker CI agent container by default.\n\nA few things have changed since then:\n\n- Woodpecker CI (server & agent) got upgraded (v1 -> v2)\n- the host OS where Woodpecker CI agent runs (in a container) changed\n\nIt seems like plugin-docker-buildx currently cannot use Docker on the\nhost (without additional work) and tries to start its own Docker daemon and fails.\n\n----\n\nI've found that we have 2 choices to make building work again:\n\n1) (Our choice with this patch) Use a separate docker-in-docker service.\n\nThis is clean and seems to work well. The benefit of using a throwaway\ndocker-in-docker is that after building, all temporary data will be removed.\n\nWe need to mark the repository as Trusted though.\n\n2) Use Docker from the host\n\nWe can use Docker from the host by using a `volumes` settings key in the\npipeline, to mount `/var/run/docker.sock` to `/var/run/docker.sock` in\nthe `woodpeckerci/plugin-docker-buildx` container.\n\nMounting volumes also requires that the repository is marked as Trusted\nthough, so there's no benefit to switching to this.\nThe only benefits are:\n\n- the cleaner pipeline history (no dind dependency service to start)\n- a small speedup due to not having to start one more Docker daemon\n which also has nothing cached in it","shortMessageHtmlLink":"Pin woodpeckerci/plugin-docker-buildx version and switch to docker-in…"}},{"before":"eaf05a9c18470b0af55e6557124d21f00db97e4a","after":null,"ref":"refs/tags/2.7.0","pushedAt":"2023-12-15T18:13:27.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"spantaleev","name":"Slavi Pantaleev","path":"/spantaleev","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/388669?s=80&v=4"}},{"before":"73cdaae5107ac5ee652a04117bfdb0fc93565ea3","after":"eaf05a9c18470b0af55e6557124d21f00db97e4a","ref":"refs/heads/master","pushedAt":"2023-12-15T16:07:06.000Z","pushType":"push","commitsCount":6,"pusher":{"login":"spantaleev","name":"Slavi Pantaleev","path":"/spantaleev","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/388669?s=80&v=4"},"commit":{"message":"Release 2.7.0","shortMessageHtmlLink":"Release 2.7.0"}},{"before":null,"after":"91bd741b503918051ffd747c8b8651f3f64c79d9","ref":"refs/heads/dependabot/go_modules/gopkg.in/yaml.v3-3.0.0","pushedAt":"2023-10-19T15:34:06.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump gopkg.in/yaml.v3 from 3.0.0-20210107192922-496545a6307b to 3.0.0\n\nBumps gopkg.in/yaml.v3 from 3.0.0-20210107192922-496545a6307b to 3.0.0.\n\n---\nupdated-dependencies:\n- dependency-name: gopkg.in/yaml.v3\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump gopkg.in/yaml.v3 from 3.0.0-20210107192922-496545a6307b to 3.0.0"}},{"before":"f1384493e8d3f69345139c39fb4ec24758d81567","after":"73cdaae5107ac5ee652a04117bfdb0fc93565ea3","ref":"refs/heads/master","pushedAt":"2023-10-19T15:33:22.000Z","pushType":"push","commitsCount":9,"pusher":{"login":"spantaleev","name":"Slavi Pantaleev","path":"/spantaleev","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/388669?s=80&v=4"},"commit":{"message":"Release 2.6.0","shortMessageHtmlLink":"Release 2.6.0"}},{"before":"e7b713c705d324ad1a37c7c65cc48c8764d80e51","after":"f1384493e8d3f69345139c39fb4ec24758d81567","ref":"refs/heads/master","pushedAt":"2023-03-16T16:28:46.962Z","pushType":"push","commitsCount":4,"pusher":{"login":"spantaleev","name":"Slavi Pantaleev","path":"/spantaleev","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/388669?s=80&v=4"},"commit":{"message":"Release 2.5.2","shortMessageHtmlLink":"Release 2.5.2"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAElQb92gA","startCursor":null,"endCursor":null}},"title":"Activity · devture/matrix-corporal"}