#229 Create new bugs page
Merged 3 months ago by spotz. Opened 3 months ago by carlwgeorge.
centos/ carlwgeorge/centos.org reportbugs  into  staging

Create new bugs page
Carl George • 3 months ago  
file modified
+1 -1
@@ -47,7 +47,7 @@ 

        link: "https://blog.centos.org/"

        icon: "fa-solid fa-newspaper"

      - name: "Submit Bug"

-       link: "https://wiki.centos.org/ReportBugs"

+       link: "/bugs/"

        icon: "fa-solid fa-bug"

    visible_on: ["navbar"]

  - name: "Documentation"

file modified
+13
@@ -22,6 +22,7 @@ 

    chat: https://matrix.to/#/#centos-alt-images:fedora.im

    docs: https://sigs.centos.org/altimages

    repo: https://gitlab.com/CentOS/AltImages

+   issues: https://pagure.io/centos-sig-alt-images/spin-bugs/issues

  

  - title: Artwork

    description: |
@@ -31,6 +32,7 @@ 

      This includes CentOS logo and brand guidelines, web design, and assets

      for promotional materials.

    repo: https://gitlab.com/CentOS/artwork

+   issues: https://gitlab.com/groups/CentOS/artwork/-/issues

  

  - title: Automotive

    description: |
@@ -45,6 +47,7 @@ 

    chat: https://matrix.to/#/#centos-automotive-sig:fedoraproject.org

    docs: https://sigs.centos.org/automotive

    repo: https://gitlab.com/CentOS/automotive

+   issues: https://gitlab.com/groups/CentOS/automotive/-/issues

  

  - title: Cloud

    description: |
@@ -60,6 +63,7 @@ 

    docs: https://sigs.centos.org/cloud

    page: /cloud

    repo: https://gitlab.com/CentOS/cloud

+   issues: https://pagure.io/centos-sig-cloud/sig/issues

  

  - title: Docs

    description: |
@@ -74,6 +78,7 @@ 

      luctus leo. Aliquam erat volutpat. Nam ac nunc vitae ante mollis lobortis.

    chat: https://matrix.to/#/#centos-docs:fedora.im

    repo: https://gitlab.com/CentOS/docs

+   issues: https://gitlab.com/groups/CentOS/docs/-/issues

  

  - title: Hyperscale

    description: |
@@ -92,6 +97,7 @@ 

    docs: https://sigs.centos.org/hyperscale

    page: /hyperscale

    repo: https://gitlab.com/CentOS/Hyperscale

+   issues: https://pagure.io/centos-sig-hyperscale/sig/issues

  

  - title: Infrastructure

    description: |
@@ -105,6 +111,7 @@ 

      purus ullamcorper, eget auctor est bibendum. Morbi nec rutrum libero, vel

      luctus leo. Aliquam erat volutpat. Nam ac nunc vitae ante mollis lobortis.

    repo: https://gitlab.com/CentOS/infra

+   issues: https://pagure.io/centos-infra/issues

  

  - title: Integration

    description: |
@@ -123,6 +130,7 @@ 

    chat: https://matrix.to/#/#centos-integration:fedora.im

    docs: https://sigs.centos.org/integration

    repo: https://gitlab.com/CentOS/Integration

+   issues: https://gitlab.com/CentOS/Integration/general/-/issues

  

  - title: ISA

    description: |
@@ -136,6 +144,7 @@ 

    highlight: true

    docs: https://sigs.centos.org/isa

    repo: https://gitlab.com/CentOS/isa

+   issues: https://gitlab.com/groups/CentOS/isa/-/issues

  

  - title: Kmods

    description: |
@@ -148,6 +157,7 @@ 

    highlight: true

    docs: https://sigs.centos.org/kmods

    repo: https://gitlab.com/CentOS/kmods

+   issues: https://pagure.io/centos-sig-kmods/sig/issues

  

  - title: Messaging

    description: |
@@ -199,6 +209,7 @@ 

      luctus leo. Aliquam erat volutpat. Nam ac nunc vitae ante mollis lobortis.

    chat: https://matrix.to/#/#centos-promo:fedora.im

    repo: https://gitlab.com/CentOS/promo

+   issues: https://gitlab.com/groups/CentOS/promo/-/issues

  

  - title: Software Collections

    description: |
@@ -227,6 +238,7 @@ 

    highlight: true

    docs: https://sigs.centos.org/storage

    repo: https://gitlab.com/CentOS/storage

+   issues: https://gitlab.com/groups/CentOS/storage/-/issues

  

  - title: Virtualization

    description: |
@@ -240,3 +252,4 @@ 

    highlight: true

    docs: https://sigs.centos.org/virt

    repo: https://gitlab.com/CentOS/virt

+   issues: https://pagure.io/centos-sig-virt/sig/issues

file added
+32
@@ -0,0 +1,32 @@ 

+ ---

+ title: Reporting Bugs

+ ---

+ 

+ ## Reporting Bugs

+ 

+ The CentOS Project uses several trackers for bugs, issues, and feature

+ requests.

+ 

+ ### CentOS Stream

+ 

+ CentOS Stream bugs are tracked in [Red Hat Jira](https://issues.redhat.com) in

+ the [RHEL project](https://issues.redhat.com/projects/RHEL).

+ 

+ * [file a bug for CentOS Stream 9](https://issues.redhat.com/secure/CreateIssueDetails!init.jspa?pid=12332745&issuetype=1&versions=12412761)

+ * [file a bug for CentOS Stream 10](https://issues.redhat.com/secure/CreateIssueDetails!init.jspa?pid=12332745&issuetype=1&versions=12412762)

+ 

+ Use the source package name for the component field.  You can alternatively use

+ the distribution component if you think it makes sense to do so, such as if the

+ bug is regarding the distribution as a whole and not a specific package.

+ 

+ ### Special Interest Groups

+ 

+ CentOS Special Interest Groups have their own issue trackers.

+ 

+ {% for sig in site.data.centos.sigs %}

+   {% unless sig.inactive %}

+     {% if sig.issues %}

+ * [{{ sig.title }}]({{ sig.issues }})

+     {% endif %}

+   {% endunless %}

+ {% endfor %}

This is mostly a migration of the content on the ReportBugs wiki page with some refresh adjustments.

This is great. What do you think about putting the SIG bug links in _data/centos/sigs.yml and slurping that in here? Then we could use the same data to put bug links on the new SIGs page without duplicating source info.

rebased onto 1c1b015

3 months ago

Great idea, I've amended the commit to do it that way. Now any active SIG with an issue link will be displayed on this page.

Pull-Request has been merged by spotz

3 months ago

Looked good so merged