Skip to content

Commit b77152d

Browse files
aryekocursoragent
andauthored
chore: add stale workflow and citation metadata (#104)
Add stale issue/PR automation mirroring modkit's policy (60-day stale, 14-day close, exempt critical/high/epic/story labels). Add CITATION.cff for proper academic and industry citation of benchmark methodology and results. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 096cab9 commit b77152d

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

.github/workflows/stale.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Stale Issues
2+
3+
on:
4+
schedule:
5+
- cron: "30 1 * * *" # Daily at 01:30 UTC
6+
workflow_dispatch:
7+
8+
permissions:
9+
issues: write
10+
pull-requests: write
11+
12+
jobs:
13+
stale:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/stale@v9
17+
with:
18+
stale-issue-message: >
19+
This issue has been automatically marked as stale because it has not had
20+
recent activity. It will be closed in 14 days if no further activity occurs.
21+
If this issue is still relevant, please comment or remove the stale label.
22+
stale-pr-message: >
23+
This pull request has been automatically marked as stale because it has not
24+
had recent activity. It will be closed in 14 days if no further activity occurs.
25+
close-issue-message: >
26+
This issue was closed because it has been stale for 14 days with no activity.
27+
Feel free to reopen if it's still relevant.
28+
days-before-stale: 60
29+
days-before-close: 14
30+
stale-issue-label: "stale"
31+
stale-pr-label: "stale"
32+
exempt-issue-labels: "priority: critical,priority: high,epic,story"
33+
exempt-pr-labels: "priority: critical,priority: high"

CITATION.cff

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
cff-version: 1.2.0
2+
title: "go-modkit/benchmarks"
3+
message: "If you use this benchmark harness or reference its results, please cite it."
4+
type: software
5+
authors:
6+
- family-names: Kogan
7+
given-names: Arye
8+
email: aryekogan@gmail.com
9+
url: "https://github.com/go-modkit/benchmarks"
10+
repository-code: "https://github.com/go-modkit/benchmarks"
11+
license: MIT
12+
keywords:
13+
- benchmark
14+
- go
15+
- framework-benchmark
16+
- api-parity
17+
- performance-testing

0 commit comments

Comments
 (0)