Skip to content

Commit 7494c21

Browse files
committed
autodevflow
1 parent df63536 commit 7494c21

File tree

2 files changed

+1079
-0
lines changed

2 files changed

+1079
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: repo-architect
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '17 * * * *'
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
models: read
12+
13+
jobs:
14+
repo-architect:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
with:
20+
fetch-depth: 0
21+
22+
- name: Set up Python
23+
uses: actions/setup-python@v5
24+
with:
25+
python-version: '3.x'
26+
27+
- name: Run repo architect
28+
env:
29+
GITHUB_TOKEN: ${{ github.token }}
30+
GITHUB_REPO: ${{ github.repository }}
31+
GITHUB_BASE_BRANCH: ${{ github.event.repository.default_branch }}
32+
run: |
33+
python repo_architect.py

0 commit comments

Comments
 (0)