fix references after migration to Forge

Related to #295
This commit is contained in:
Kamil Páral 2026-01-16 16:55:51 +01:00
commit 6e5f048739
8 changed files with 11 additions and 12 deletions

View file

@ -10,9 +10,8 @@ https://qa.fedoraproject.org/blockerbugs
If you notice bugs or have suggestions on how we can make this app better,
please report or discuss them in any of the following places:
* [BlockerBugs project page](https://pagure.io/fedora-qa/blockerbugs)
* Via email on the [qa-devel list](https://lists.fedoraproject.org/archives/list/qa-devel@lists.fedoraproject.org/)
* In `#fedora-qa` channel on [Libera.Chat](https://libera.chat) IRC
* [BlockerBugs project page](https://forge.fedoraproject.org/quality/blockerbugs)
* [Fedora Quality communication channels](https://fedoraproject.org/wiki/QA#Communicate)
## Documentation

View file

@ -178,7 +178,7 @@ def sync_bugs(args):
# sync always. If no downsides are found, completely remove the "--full"
# cmdline option (and related function arguments) and make full sync the
# only approach.
# Related: https://pagure.io/fedora-qa/blockerbugs/issue/184
# Related: https://forge.fedoraproject.org/quality/blockerbugs/issues/184
fullsync = True
current_milestone = Milestone.query.filter_by(active=True).first()

View file

@ -146,7 +146,7 @@
please report or discuss them in any of the following places:
<ul>
<li>
<a class="text-white-50" href="https://pagure.io/fedora-qa/blockerbugs">
<a class="text-white-50" href="https://forge.fedoraproject.org/quality/blockerbugs">
BlockerBugs project page</a>
</li>
<li>

View file

@ -46,7 +46,7 @@ def create_bugzilla(url: Optional[str] = None,
loaded from the config file. If api_key is used (i.e. the query is not anonymous), Bugzilla is
checked whether the key was accepted (otherwise an exception is raised).
"""
# FIXME: xmlrpc must be used until https://pagure.io/fedora-qa/blockerbugs/issue/184 is resolved
# FIXME: xmlrpc must be used until https://forge.fedoraproject.org/quality/blockerbugs/issues/184 is resolved
bz = bugzilla.Bugzilla(url=url or app.config['BUGZILLA_URL'],
api_key=api_key or app.config['BUGZILLA_API_KEY'],
use_creds=False,
@ -119,7 +119,7 @@ class BlockerBugs():
# changed after conditions are met
# FIXME: This seems to be tremendously slowing down Bugzilla5
# Related: https://pagure.io/fedora-qa/blockerbugs/issue/184
# Related: https://forge.fedoraproject.org/quality/blockerbugs/issues/184
query.update({
'f2': 'OP',
'j2': 'OR',

View file

@ -21,7 +21,7 @@ Submitting Code
===============
Create a pull request for review on the project page:
https://pagure.io/fedora-qa/blockerbugs
https://forge.fedoraproject.org/quality/blockerbugs
Once the review is complete, merge the code into the ``develop`` branch. If you
do not have write privileges, this will be done for you

View file

@ -1,5 +1,5 @@
[//]: # (This is a comment)
[//]: # (Note: This file is present in both https://pagure.io/fedora-qa/blockerbugs and https://pagure.io/fedora-qa/blocker-review. Please try to keep them synchronized.)
[//]: # (Note: This file is present in both https://forge.fedoraproject.org/quality/blockerbugs and https://pagure.io/fedora-qa/blocker-review. Please try to keep them synchronized.)
## Fedora Blocker Review discussions
This is a place where Fedora contributors vote on Fedora release blockers. The process is described here:<br/>
@ -112,4 +112,4 @@ See contact information at:<br/>
https://fedoraproject.org/wiki/QA
Submit bugs and feature requests for this blocker-review discussion process at:<br/>
https://pagure.io/fedora-qa/blockerbugs
https://forge.fedoraproject.org/quality/blockerbugs

View file

@ -29,7 +29,7 @@ SQLAlchemy ~= 2.0.0
# WTForms introduced breaking changes in 3.2.0
# https://wtforms.readthedocs.io/en/3.2.x/changes/#version-3-2-0
# https://pagure.io/fedora-qa/blockerbugs/issue/291
# https://forge.fedoraproject.org/quality/blockerbugs/issues/291
# Flask-Admin will fix compatibility in version 2.0.0
# https://github.com/pallets-eco/flask-admin/releases/tag/v2.0.0a1
# meanwhile pin WTForms to version 3.1.2 and also pin versions of Flask-Admin and Flask-WTF

View file

@ -31,7 +31,7 @@ setup(name='blockerbugs',
author='Tim Flink',
author_email='tflink@fedoraproject.org',
license='GPLv2+',
url='https://pagure.io/fedora-qa/blockerbugs',
url='https://forge.fedoraproject.org/quality/blockerbugs',
packages=['blockerbugs', 'blockerbugs.controllers',
'blockerbugs.util', 'blockerbugs.models',
'blockerbugs.controllers.api',