feat: Add GitHub Issues integration for two-way task sync#5
Merged
MujahidAbbas merged 2 commits intomainfrom Jan 6, 2026
Merged
feat: Add GitHub Issues integration for two-way task sync#5MujahidAbbas merged 2 commits intomainfrom
MujahidAbbas merged 2 commits intomainfrom
Conversation
This is a merge commit the virtual branches in your workspace. Due to GitButler managing multiple virtual branches, you cannot switch back and forth between git branches and virtual branches easily. If you switch to another branch, GitButler will need to be reinitialized. If you commit on this branch, GitButler will throw it away. Here are the branches that are currently applied: - feature/github-issues-export (refs/gitbutler/feature/github-issues-export) - database/factories/ExternalLinkFactory.php - app/Livewire/Projects/Workspace.php - resources/views/integrations/github/select-repo.blade.php - database/migrations/2026_01_02_081825_create_sync_runs_table.php - app/Enums/SyncRunStatus.php - .gitignore - app/Jobs/GenerateTasksJob.php - composer.lock - app/Services/GitHub/GitHubAuthService.php - app/Exceptions/GitHubRateLimitException.php - app/Services/GitHub/TaskToIssueMapper.php - phpunit.xml - config/services.php - app/Enums/ExternalLinkSyncStatus.php - app/Services/GitHub/GitHubSyncService.php - app/Enums/IntegrationProvider.php - app/Models/Integration.php - app/Models/Task.php - .env.testing - database/factories/SyncRunFactory.php - app/Services/GitHub/GitHubRateLimiter.php - app/Listeners/QueueGitHubSync.php - database/migrations/2026_01_02_081824_create_integrations_table.php - app/Models/ExternalLink.php - app/Jobs/CheckSyncRunCompletion.php - app/Enums/IntegrationStatus.php - app/Models/Project.php - database/migrations/2026_01_02_081825_create_external_links_table.php - tests/Feature/GitHubWebhookTest.php - composer.json - database/factories/IntegrationFactory.php - app/Services/GitHub/GitHubApiService.php - resources/views/components/layouts/app.blade.php - app/Jobs/DebouncedGitHubSync.php - app/Models/SyncRun.php - app/Exceptions/GitHubAuthException.php - resources/views/livewire/projects/tabs/integrations.blade.php - app/Jobs/SyncTaskToGitHub.php - app/Events/TasksChanged.php - app/Providers/AppServiceProvider.php - app/Exceptions/GitHubApiException.php - tests/Pest.php - app/Http/Controllers/GitHubIntegrationController.php - tests/Feature/GitHubSyncTest.php - app/Livewire/Projects/Tabs/Integrations.php - tests/Feature/GitHubAutoSyncTest.php - tests/Feature/GitHubSyncQueueTest.php - routes/web.php - resources/views/livewire/projects/workspace.blade.php - app/Http/Controllers/GitHubWebhookController.php For more information about what we're doing here, check out our docs: https://docs.gitbutler.com/features/branch-management/integration-branch
- Add Integration, ExternalLink, and SyncRun models with migrations - Implement GitHub OAuth flow for repository connection - Add two-way sync: tasks to GitHub issues and webhooks for issue updates - Create Integrations tab in project workspace UI - Implement debounced sync with queue-based processing - Add comprehensive test coverage for sync functionality - Support sync status tracking per task with visual indicators
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
Test plan
php artisan test