-
-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dynamic gitlab runner registration #137
base: master
Are you sure you want to change the base?
Conversation
Uplevel your code reviews with CodeRabbit ProCodeRabbit ProIf you like this project, please support us by purchasing the Pro version. The Pro version has advanced context, superior noise reduction and several proprietary improvements compared to the open source version. Moreover, CodeRabbit Pro is free for open source projects. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Files selected (1)
- home/.chezmoi.yaml.tmpl (1)
Files ignored due to filter (1)
- software.yml
Files not summarized due to errors (1)
- home/.chezmoi.yaml.tmpl (nothing obtained from openai)
Files not reviewed due to errors (1)
- home/.chezmoi.yaml.tmpl (no response)
Review comments generated (0)
- Review: 0
- LGTM: 0
Tips
Chat with CodeRabbit Bot (@coderabbitai
)
- Reply on review comments left by this bot to ask follow-up questions. A review comment is a comment on a diff or a file.
- Invite the bot into a review comment chain by tagging
@coderabbitai
in a reply.
Code suggestions
- The bot may make code suggestions, but please review them carefully before committing since the line number ranges may be misaligned.
- You can edit the comment made by the bot and manually tweak the suggestion if it is slightly off.
Pausing incremental reviews
- Add
@coderabbitai: ignore
anywhere in the PR description to pause further reviews from the bot.
Hey @enggnr --- is this ready to be merged? What issue does it address? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Files selected (1)
- home/.chezmoi.yaml.tmpl (1)
Files ignored due to filter (1)
- software.yml
Files not summarized due to errors (1)
- home/.chezmoi.yaml.tmpl (nothing obtained from openai)
Files not reviewed due to errors (1)
- home/.chezmoi.yaml.tmpl (no response)
Review comments generated (0)
- Review: 0
- LGTM: 0
Tips
Chat with CodeRabbit Bot (@coderabbitai
)
- Reply on review comments left by this bot to ask follow-up questions. A review comment is a comment on a diff or a file.
- Invite the bot into a review comment chain by tagging
@coderabbitai
in a reply.
Code suggestions
- The bot may make code suggestions, but please review them carefully before committing since the line number ranges may be misaligned.
- You can edit the comment made by the bot and manually tweak the suggestion if it is slightly off.
Pausing incremental reviews
- Add
@coderabbitai: ignore
anywhere in the PR description to pause further reviews from the bot.
@ProfessorManhattan, a token was manually added to the secrets to configure Gitlab runner. It was using the now deprecated method of registering runners. This change needs just the Gitlab API token (with right permissions of course) to register a runner at the Group level. It also uses the new method of registering runners. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Files selected (1)
- docs/customization/secrets.md (1)
Files not summarized due to errors (1)
- docs/customization/secrets.md (nothing obtained from openai)
Files not reviewed due to errors (1)
- docs/customization/secrets.md (no response)
Review comments generated (0)
- Review: 0
- LGTM: 0
Tips
Chat with CodeRabbit Bot (@coderabbitai
)
- Reply on review comments left by this bot to ask follow-up questions. A review comment is a comment on a diff or a file.
- Invite the bot into a review comment chain by tagging
@coderabbitai
in a reply.
Code suggestions
- The bot may make code suggestions, but please review them carefully before committing since the line number ranges may be misaligned.
- You can edit the comment made by the bot and manually tweak the suggestion if it is slightly off.
Pausing incremental reviews
- Add
@coderabbitai: ignore
anywhere in the PR description to pause further reviews from the bot.
What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
This change provides the ability to generate Runner auth token for Gitlab runner registration
What is the current behavior? (You can also link to an open issue here)
Gitlab runner registration token is provided manually. This method is deprecated and will be removed in the future
Other information:
Fixes Dynamically Acquire GitLab Runner Token #134.