Skip to content

Commit 474dd2b

Browse files
committed
build: add metadata sync workflow and metadata.json for repo
Generated-by: aiautocommit
1 parent 6a67974 commit 474dd2b

3 files changed

Lines changed: 50 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Repository Metadata Sync
2+
3+
on:
4+
push:
5+
branches: [main, master]
6+
7+
jobs:
8+
repo_sync:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Fetching Local Repository
12+
uses: actions/checkout@v4
13+
- name: Repository Metadata Sync
14+
uses: iloveitaly/github-actions-metadata-sync@v1
15+
with:
16+
TOKEN: ${{ secrets.GH_PERSONAL_TOKEN }}

copier.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,19 @@ _exclude:
22
- "*"
33
- "!/.cursor/**"
44
- "!/.github/**"
5+
6+
_exclude:
7+
- metadata.json
8+
- .github/workflows/repo-sync.yml
9+
- TODO
10+
- /.git
11+
- /README.md
12+
- /LICENSE.md
13+
- tests/integration/__snapshots__
14+
15+
_tasks:
16+
- git init
17+
- git add -A
18+
- git commit -m "🎉 Initial commit"
19+
- ["{{ _copier_python }}", .copier/bootstrap.py]
20+
- git add -A

metadata.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"description": "Centralized LLM prompt instructions for Copilot and Cursor, including scripts to convert and sync rules for Python, React, Shell, and TypeScript. Designed for rapid reuse and contribution across projects.",
3+
"homepage": "https://github.com/iloveitaly/llm-ide-prompts",
4+
"keywords": [
5+
"llm",
6+
"copilot",
7+
"cursor",
8+
"prompts",
9+
"instructions",
10+
"python",
11+
"react",
12+
"typescript",
13+
"shell",
14+
"rules",
15+
"sync",
16+
"automation"
17+
]
18+
}

0 commit comments

Comments
 (0)