{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":264239324,"defaultBranch":"2.x","name":"jobpipeline","ownerLogin":"archtechx","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2020-05-15T16:08:38.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/84272491?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1706393322.0","currentOid":""},"activityList":{"items":[{"before":"7a8135f1c66e28a0c647d096c7ad65f488fdbbaa","after":"8b793e0cf235bce0b5260e7e24eec91427b6bcd3","ref":"refs/heads/2.x","pushedAt":"2024-01-27T22:02:14.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"stancl","name":"Samuel Štancl","path":"/stancl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/33033094?s=80&v=4"},"commit":{"message":"Fix composer.json syntax","shortMessageHtmlLink":"Fix composer.json syntax"}},{"before":"bfc53f6dd6c7de79e881b306fa1081e58e5c3c54","after":"36474ffd2180170856fd05f6003c946064959629","ref":"refs/heads/1.x","pushedAt":"2024-01-27T22:01:53.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"stancl","name":"Samuel Štancl","path":"/stancl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/33033094?s=80&v=4"},"commit":{"message":"Laravel 11 support","shortMessageHtmlLink":"Laravel 11 support"}},{"before":"6069516b57e1c883f654d63783eee2d0b531b8df","after":"7a8135f1c66e28a0c647d096c7ad65f488fdbbaa","ref":"refs/heads/2.x","pushedAt":"2024-01-27T22:00:25.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"stancl","name":"Samuel Štancl","path":"/stancl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/33033094?s=80&v=4"},"commit":{"message":"Laravel 11 support","shortMessageHtmlLink":"Laravel 11 support"}},{"before":"71fb23746298a8d9c62a27652fe4ea3020b46cca","after":"6069516b57e1c883f654d63783eee2d0b531b8df","ref":"refs/heads/2.x","pushedAt":"2024-01-27T21:58:43.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"stancl","name":"Samuel Štancl","path":"/stancl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/33033094?s=80&v=4"},"commit":{"message":"gitignore .DS_Store","shortMessageHtmlLink":"gitignore .DS_Store"}},{"before":null,"after":"71fb23746298a8d9c62a27652fe4ea3020b46cca","ref":"refs/heads/2.x","pushedAt":"2023-03-16T21:17:39.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"stancl","name":"Samuel Štancl","path":"/stancl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/33033094?s=80&v=4"},"commit":{"message":"Fix code style (php-cs-fixer)","shortMessageHtmlLink":"Fix code style (php-cs-fixer)"}},{"before":null,"after":"bfc53f6dd6c7de79e881b306fa1081e58e5c3c54","ref":"refs/heads/1.x","pushedAt":"2023-03-16T21:16:53.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"stancl","name":"Samuel Štancl","path":"/stancl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/33033094?s=80&v=4"},"commit":{"message":"L10 compatibility (#12)\n\n* Bump dependencies for Laravel 10\r\n\r\n* Update GitHub Actions for Laravel 10\r\n\r\n* drop < L9 support\r\n\r\n* use `dispatch_sync` instead of `dispatch_now`\r\n\r\n* migrate phpunit configuration\r\n\r\n* update matrix format\r\n\r\n---------\r\n\r\nCo-authored-by: Samuel Štancl ","shortMessageHtmlLink":"L10 compatibility (#12)"}},{"before":"d7a9e6796e8dca25fc43af82c73a64adc4119ac6","after":"71fb23746298a8d9c62a27652fe4ea3020b46cca","ref":"refs/heads/master","pushedAt":"2023-03-16T21:14:58.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Fix code style (php-cs-fixer)","shortMessageHtmlLink":"Fix code style (php-cs-fixer)"}},{"before":"bfc53f6dd6c7de79e881b306fa1081e58e5c3c54","after":"d7a9e6796e8dca25fc43af82c73a64adc4119ac6","ref":"refs/heads/master","pushedAt":"2023-03-16T21:14:36.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"stancl","name":"Samuel Štancl","path":"/stancl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/33033094?s=80&v=4"},"commit":{"message":"Possibility to change the default configurations for the queue jobs. (#13)\n\n* Add $queue attribute\r\n\r\nThis code enables me to change the queue name that the JobPipeline will be pushed to.\r\n\r\nNow I can do something like this:\r\n```php\r\nJobPipeline::make([\r\n Jobs\\CreateDatabase::class,\r\n Jobs\\MigrateDatabase::class,\r\n // Jobs\\SeedDatabase::class,\r\n\r\n // Your own jobs to prepare the tenant.\r\n // Provision API keys, create S3 buckets, anything you want!\r\n\r\n])->send(function (Events\\TenantCreated $event)\r\n{\r\n return $event->tenant;\r\n})->onQueue('another-queue')\r\n ->shouldBeQueued()\r\n```\r\n\r\n* Add .idea directory to gitignore\r\n\r\n* The following methods where added: onConnection, onQueue, delay, tries, shouldBeQueuedOn. The signature of shouldBeQueued was changed too.\r\n\r\n* reuse shouldBeQueuedOn\r\n\r\n* updating docs\r\n\r\n* added timeout\r\n\r\n* docs updated\r\n\r\n* .phpunit.cache/ added to gitignore\r\n\r\n* tests for shouldQueueOn method\r\n\r\n* leave only shouldBeQueued method\r\n\r\n* update README\r\n\r\n* remove unnecessary property declarations\r\n\r\n* Delete jobpipelinetest.json\r\n\r\n* add jobpipelinetest.json as a empty file\r\n\r\n* update readme\r\n\r\n* simplify tests\r\n\r\n* improve code\r\n\r\n* improve readme\r\n\r\n---------\r\n\r\nCo-authored-by: Samuel Štancl ","shortMessageHtmlLink":"Possibility to change the default configurations for the queue jobs. (#…"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyNC0wMS0yN1QyMjowMjoxNC4wMDAwMDBazwAAAAPqxINW","startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wMS0yN1QyMjowMjoxNC4wMDAwMDBazwAAAAPqxINW","endCursor":"Y3Vyc29yOnYyOpK7MjAyMy0wMy0xNlQyMToxNDozNi4wMDAwMDBazwAAAAMFNo1B"}},"title":"Activity · archtechx/jobpipeline"}