We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df63536 commit 7494c21Copy full SHA for 7494c21
.github/workflows/repo-architect.yml
@@ -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
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