Skip to content

Commit 868bb9b

Browse files
committed
fix: polish posts
* add tags * adjust headings * formatting * admonitions Signed-off-by: Matej Focko <[email protected]>
1 parent 2c026af commit 868bb9b

File tree

13 files changed

+43
-29
lines changed

13 files changed

+43
-29
lines changed

posts/2021-features/index.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
---
22
title: 2021 for Packit
33
date: 2022-01-12T09:23:38+01:00
4-
draft: false
5-
weight: 97
64
authors: flachman
5+
tags:
6+
- 2021
7+
- yearly-features
8+
- summary
79
---
810

911
# Packit project in 2021

posts/2021-in-numbers/index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
---
22
title: 2021 in Numbers
33
date: 2022-01-04
4-
weight: 98
54
authors: flachman
5+
tags:
6+
- 2021
7+
- yearly-numbers
8+
- summary
69
---
710

811
# 2021 for Packit in numbers

posts/2022-features/index.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
---
22
title: "2022 for Packit"
33
date: 2023-01-28T11:58:50+01:00
4-
weight: 91
54
authors: flachman
5+
tags:
6+
- 2022
7+
- yearly-features
8+
- summary
69
---
710

8-
## Packit project in 2022
9-
1011
As you will see in the following paragraphs, the year 2022 was really fruitful for the Packit project. Without further ado, let’s take a look at what the Packit team accomplished last year!
1112

1213
<!--truncate-->

posts/copr-srpms/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
---
22
title: Building SRPMs in Copr
33
date: 2022-03-07T12:57:40+01:00
4-
weight: 96
54
authors: lbarczio
5+
tags:
6+
- srpm
7+
- copr
68
---
79

810
Let's find out how Packit builds your SRPMs in the Copr.

posts/downstream-automation/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
title: "Downstream automation is here"
33
date: 2022-05-06
4-
weight: 95
54
authors: flachman
5+
tags:
6+
- propose-downstream
67
---
78

89
# Downstream automation is here

posts/fas-verification-automation/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
title: "Automation of FAS verification in Packit Service"
33
date: 2022-05-24
4-
weight: 94
54
authors: lbarczio
5+
tags:
6+
- fas
67
---
78

89
As you may already know, for using Packit Service

posts/fedora-eln/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
title: "Working on the next major RHEL release, in your upstream repo"
33
date: 2020-10-04
4-
weight: 99
54
authors: ttomecek
5+
tags:
6+
- downstream
67
---
78

89
[Fedora EL Niño](https://docs.fedoraproject.org/en-US/eln/) (ELN) is such an

posts/manual-triggering/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
title: (Tests) job triggering improvements
33
date: 2023-07-11T08:46:18+02:00
4-
weight: 88
54
authors: lbarczio
5+
tags:
6+
- configuration
67
---
78

89
Recently, we received multiple contributions from the Strimzi team, specifically [Jakub Stejskal](https://github.com/Frawless)

posts/monorepos/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
title: Introducing monorepository support
33
date: 2023-07-04T09:20:06+02:00
4-
weight: 89
54
authors: lbarczio
5+
tags:
6+
- monorepos
67
---
78

89
We are very happy to announce a major enhancement to Packit! We have now added support for

posts/pre-commit-hooks/index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
22
title: "Packit's pre-commit hooks"
33
date: 2023-05-16T11:00:00
4-
weight: 90
54
authors: jpopelka
5+
tags:
6+
- workflow
67
---
78

8-
## pre-commit
9-
109
[pre-commit](https://pre-commit.com) is a wonderful tool that saves you
1110
a lot of time by automatically checking your changes before you
1211
commit and/or push them out.
@@ -15,11 +14,12 @@ commit and/or push them out.
1514

1615
For example, in our [packit repo](https://github.com/packit/packit/blob/main/.pre-commit-config.yaml)
1716
we run various hooks upon each commit:
18-
[Black (Python code formatter)](https://github.com/psf/black),
19-
[Prettier (code formatter)](https://github.com/prettier/prettier),
20-
[Flake8 (Python source code checker)](https://pypi.org/project/flake8),
21-
[Mypy (static type checker for Python)](https://github.com/python/mypy),
22-
and [several other pre-commit hooks](https://github.com/pre-commit/pre-commit-hooks).
17+
18+
- [Black (Python code formatter)](https://github.com/psf/black),
19+
- [Prettier (code formatter)](https://github.com/prettier/prettier),
20+
- [Flake8 (Python source code checker)](https://pypi.org/project/flake8),
21+
- [Mypy (static type checker for Python)](https://github.com/python/mypy),
22+
- and [several other pre-commit hooks](https://github.com/pre-commit/pre-commit-hooks).
2323

2424
## Our pre-commit hooks
2525

0 commit comments

Comments
 (0)