Add job that will be used for scheduled tasks#153
Merged
tijsverkoyen merged 2 commits intomasterfrom Aug 19, 2025
Merged
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideIntroduces a new “scheduled tasks” stage in the CI pipeline and adds a scheduled job that configures Git and runs a console command to create PRs for outdated dependencies. Flow diagram for the new scheduled job to update dependenciesflowchart TD
Start([Start])
ConfigureGit[Configure Git user/email]
SetRemote[Set remote URL with access token]
RunCommand[Run console command: create PR for outdated dependencies]
End([End])
Start --> ConfigureGit --> SetRemote --> RunCommand --> End
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Pull Request Overview
This PR introduces a new GitLab CI stage for scheduled tasks, specifically adding automation for dependency updates. The change adds a scheduled job that creates pull requests for outdated dependencies using a custom console command.
- Adds a new "scheduled tasks" stage to the CI pipeline
- Introduces a job that automatically creates PRs for outdated dependencies
- Configures the job to run only on scheduled or manual web triggers
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
jonasdekeukelaere
approved these changes
Aug 18, 2025
absumo
approved these changes
Aug 18, 2025
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.
https://next-app.activecollab.com/108877/my-work?modal=Task-230709-533
Summary by Sourcery
Add a new CI stage for scheduled tasks and configure a job that runs on scheduled or manual triggers to update dependencies by creating automated PRs
New Features: