[skip] hide internal commits, only show four lines
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
03e0a54399
commit
0297cca236
@ -1,7 +1,8 @@
|
||||
clone:
|
||||
git:
|
||||
image: woodpeckerci/plugin-git
|
||||
settings:
|
||||
depth: 5
|
||||
depth: 15
|
||||
|
||||
steps:
|
||||
build:
|
||||
|
@ -31,7 +31,7 @@
|
||||
media="screen"
|
||||
rel="stylesheet"
|
||||
type="text/css"
|
||||
href="/css/site.css?1697074571690"
|
||||
href="/css/site.css?1697075405981"
|
||||
/>
|
||||
<meta
|
||||
property="title"
|
||||
@ -150,6 +150,7 @@
|
||||
<details>
|
||||
<summary>Recent Changes</summary>
|
||||
<ul id="changesList">
|
||||
<li>October 11, 2023 - add this fancy recent changes module</li>
|
||||
<li>
|
||||
October 8, 2023 - move Burnt Books into Hey Kids!, update
|
||||
archestratus to note there's no cafe anymore
|
||||
|
14
index.js
14
index.js
@ -5,14 +5,24 @@ import stores from "./stores.json" assert { type: "json" };
|
||||
|
||||
function GetRecentChanges() {
|
||||
const res = process
|
||||
.execSync('git log -4 --pretty=format:"%ct %s"')
|
||||
.execSync('git log -15 --pretty=format:"%ct %s"')
|
||||
.toString();
|
||||
return res.split("\n");
|
||||
}
|
||||
|
||||
function ChangeLog(logs) {
|
||||
let res = "\n";
|
||||
logs.forEach((l, i) => {
|
||||
let i = 0;
|
||||
logs.forEach((l) => {
|
||||
if (
|
||||
i > 3 ||
|
||||
l.includes("[skip]") ||
|
||||
l.includes("caddy") ||
|
||||
l.includes("renovate")
|
||||
) {
|
||||
return;
|
||||
}
|
||||
i++;
|
||||
const s = l.split(" ");
|
||||
const date = new Date(s[0] * 1000).toLocaleDateString("en-US", {
|
||||
year: "numeric",
|
||||
|
Loading…
Reference in New Issue
Block a user