Conversation
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Include additional Augur copyright holder names in the CREDITS.md file
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
for better handling of future query param encoding needs and sharing responsibility for url creation (GhDA owns the domain/base url, the caller owns the path and query params they want to use) Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
… this in the future Signed-off-by: Adrian Edwards <adredwar@redhat.com>
…g what it already does Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Introduce a new operational forge_instance table
Add deprecation warnings to functions that should be deprecated
Signed-off-by: Phanindra899 <p14410766@gmail.com>
Signed-off-by: Lovelace <61972457+Lovlace777@users.noreply.github.com>
[docs] Update README metrics link
Bypass collecting pull request data when PRs are disabled
Improve UrlNotFoundException logging context
… found This needs a larger refactor at a later time, this is just a small improvement to prevent a crash when data cannot be found. Signed-off-by: Adrian Edwards <adredwar@redhat.com>
based on https://stackoverflow.com/questions/15685861/setting-application-name-on-postgres-sqlalchemy Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Inengs <inengiyeemmanuel@gmail.com>
Signed-off-by: Inengs <inengiyeemmanuel@gmail.com>
Signed-off-by: Inengs <inengiyeemmanuel@gmail.com>
Signed-off-by: Inengiye Emmanuel <inengiyeemmanuel@gmail.com>
…intended These pass but require that the collectoss/tasks/github/__init__.py file be commented out first before they will run Co-Authored-By: Cursor Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
this prevents them from messing with unit testing stuff Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
…autoimport locations Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
so it doesn't import CollectOSS Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
github keys being put in wrong places Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
…tential completion Temporary workaround until we have a faster DB initialization Signed-off-by: Adrian Edwards <adredwar@redhat.com>
this should hopefully take care of everything up front like the original scripts did, without creating issues related to the cursed import situation Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
…plication Signed-off-by: Adrian Edwards <adredwar@redhat.com>
…re CollectOSS starts. This avoids some race conditions with the startup process that could create issues, especially on first initialization and especially in CI where we are still replaying migrations Co-Authored-By: guptapratykshh <pratykshgupta9999@gmail.com> Co-Authored-By: Sukuna0007Abhi <appsonly310@gmail.com> Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
enable smooth environment variable naming transition
Signed-off-by: Adrian Edwards <adredwar@redhat.com>
… releases marked as prerelease Signed-off-by: Adrian Edwards <adredwar@redhat.com>
Update metadata and docker build rules to prepare for 1.1rc1 release
| from pathlib import Path | ||
| import os | ||
| import getpass | ||
| import subprocess |
| import os | ||
| import getpass | ||
| import subprocess | ||
| from subprocess import check_call |
| """ | ||
| pass | ||
| # alembic upgrade head, unless theres an env var preventing automatic migration | ||
| check_call(["alembic", "upgrade", "head"]) |
| """ | ||
| pass | ||
| # alembic upgrade head, unless theres an env var preventing automatic migration | ||
| check_call(["alembic", "upgrade", "head"]) |
| with git_credentials.open("w", encoding="utf-8") as c: | ||
| c.writelines(credentials) | ||
|
|
||
| subprocess.call(["git", "config", "--global", "credential.helper", f"store --file {str(git_credentials)}"]) |
| with git_credentials.open("w", encoding="utf-8") as c: | ||
| c.writelines(credentials) | ||
|
|
||
| subprocess.call(["git", "config", "--global", "credential.helper", f"store --file {str(git_credentials)}"]) |
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.
Description
This merges main into a new
nextbranch, which is currently identical torelease. It was created to provide some separation between this RC prerelease and a full release.Notes for Reviewers
Signed commits