contributions: add ‹tmt› (#1)

Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
Matej Focko 2023-09-17 16:05:05 +02:00 committed by GitHub
parent d91860e0f7
commit e0b7f8f800
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,20 @@ import Layout from "@theme/Layout";
import Contribution, { ContributionMetadata } from "../components/contributions/Contribution"; import Contribution, { ContributionMetadata } from "../components/contributions/Contribution";
const contributions: ContributionMetadata[] = [ const contributions: ContributionMetadata[] = [
{
title: "tmt",
description: (<p>
The `tmt` tool provides a user-friendly way to work with tests. You can
comfortably create new tests, safely and easily run tests across different
environments, review test results, debug test code and enable tests in the
CI using a consistent and concise config.
</p>),
contribution: (<p>
Just a smallish contribution to the docs related to the changes implemented
on the Packit side.
</p>),
repoURL: "https://github.com/teemtee/tmt",
},
{ {
title: "Fedora Infrastructure Ansible", title: "Fedora Infrastructure Ansible",
description: (<p> description: (<p>
@ -204,4 +218,4 @@ export default function Contributions(): JSX.Element {
</main> </main>
</Layout> </Layout>
); );
} }