Skip to content

Commit 164c343

Browse files
erichermanAinali
andcommitted
sketch-in a jekyll site to display the checks
Co-authored-by: Jan Ainali <[email protected]>
1 parent cee7499 commit 164c343

File tree

6 files changed

+53
-1
lines changed

6 files changed

+53
-1
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# SPDX-License-Identifier: CC0-1.0
2+
# SPDX-FileCopyrightText: 2023 The Foundation for Public Code <[email protected]>
3+
4+
Gemfile.lock
5+
_site
6+
vendor/
7+
8+
# but used in the gh-pages branch
9+
badges/
10+
url-check-fails.json
11+
url-check-results.json

Gemfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source "https://rubygems.org"
2+
gem 'github-pages', group: :jekyll_plugins
3+
gem 'html-proofer', '~>3.19'
4+
gem 'mdl'
5+
gem 'jekyll-sitemap'
6+
7+
gem "webrick", "~> 1.7"

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,10 @@ check: url-check-config.json url-check/url-check.py check-no-fails.sh
2828
@echo SUCCESS $@
2929

3030
all: url-check/url-check.py
31+
32+
url-check-fails.json: url-check/url-check.py url-check-config.json
33+
url-check/url-check.py
34+
35+
serve: url-check-fails.json
36+
PAGES_REPO_NWO=publiccodenet/stpubliccodenet-url-check \
37+
bundle exec jekyll serve

_config.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# SPDX-License-Identifier: CC0-1.0
2+
# SPDX-FileCopyrightText: 2023 The Foundation for Public Code <[email protected]>
3+
4+
title: Foundation for Public Code repository link checks
5+
version: 0.0.0
6+
7+
plugins:
8+
- jekyll-sitemap
9+
10+
remote_theme: publiccodenet/jekyll-theme

index.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
# SPDX-License-Identifier: CC0-1.0
3+
# SPDX-FileCopyrightText: 2023 The Foundation for Public Code <[email protected]>
4+
---
5+
# Foundation for Public Code repository link checks
6+
7+
## Repository status:
8+
9+
|---|---|
10+
| [standard (main)](https://github.com/publiccodenet/standard/tree/main) | ![standard badge](badges/standard.publiccode.net.svg) |
11+
| [standard (develop)](https://github.com/publiccodenet/standard/tree/develop) | ![standard badge](badges/standard.publiccode.net-develop.svg) |
12+
| [bumperscripter (main)](https://github.com/publiccodenet/bumperscripter/tree/main) | ![bumperscripter badge](badges/bumperscripter.svg) |
13+
14+
## link check results
15+
16+
* [condensed](url-check-fails.json)
17+
* [full](url-check-results.json)

0 commit comments

Comments
 (0)