From 5ac086fa7321ff05ea1158c14c875653767e79e0 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Thu, 19 Jun 2025 17:05:06 -0700 Subject: [PATCH] Revert "Temporarily remove recent contributors due to broken Gitea API: https://github.com/go-gitea/gitea/issues/34682" This reverts commit 3902dd873dc0cd8871df0c354de8d8bff6c84a12. --- README.md | 8 ++++++++ docs/Dockerfile | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 06d887f1..f58b3ce9 100644 --- a/README.md +++ b/README.md @@ -179,3 +179,11 @@ first. In general, contributions are very welcome. We don't bite! Also, please check out the [borgmatic development how-to](https://torsion.org/borgmatic/docs/how-to/develop-on-borgmatic/) for info on cloning source code, running tests, etc. + +### Recent contributors + +Thanks to all borgmatic contributors! There are multiple ways to contribute to +this project, so the following includes those who have fixed bugs, contributed +features, *or* filed tickets. + +{% include borgmatic/contributors.html %} diff --git a/docs/Dockerfile b/docs/Dockerfile index ee0b7d71..cfa1b828 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -7,7 +7,7 @@ RUN borgmatic --help > /command-line.txt \ && for action in repo-create transfer create prune compact check delete extract config "config bootstrap" "config generate" "config validate" export-tar mount umount repo-delete restore repo-list list repo-info info break-lock "key export" "key import" "key change-passphrase" recreate borg; do \ echo -e "\n--------------------------------------------------------------------------------\n" >> /command-line.txt \ && borgmatic $action --help >> /command-line.txt; done -#RUN /app/docs/fetch-contributors >> /contributors.html +RUN /app/docs/fetch-contributors >> /contributors.html FROM docker.io/node:22.4.0-alpine AS html @@ -25,7 +25,7 @@ RUN npm install @11ty/eleventy \ markdown-it-replace-link COPY --from=borgmatic /etc/borgmatic/config.yaml /source/docs/_includes/borgmatic/config.yaml COPY --from=borgmatic /command-line.txt /source/docs/_includes/borgmatic/command-line.txt -#COPY --from=borgmatic /contributors.html /source/docs/_includes/borgmatic/contributors.html +COPY --from=borgmatic /contributors.html /source/docs/_includes/borgmatic/contributors.html COPY . /source RUN NODE_ENV=${ENVIRONMENT} npx eleventy --input=/source/docs --output=/output/docs \ && mv /output/docs/index.html /output/index.html