We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f21c732 commit c465f9dCopy full SHA for c465f9d
.github/workflows/weekly-spec-update.yaml
@@ -0,0 +1,29 @@
1
+name: "Weekly Spec Update"
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 0 * * SUN' # Every Sunday at midnight UTC
6
7
+jobs:
8
+ update-all-specs:
9
+ runs-on: ubuntu-latest
10
11
+ strategy:
12
+ matrix:
13
+ file:
14
+ - core
15
+ - grounding
16
+ - prompt-registry
17
18
+ steps:
19
+ - name: "Checkout repository"
20
+ uses: actions/checkout@v4
21
22
+ - name: "Trigger spec update"
23
+ run: |
24
+ gh workflow run spec-update.yaml \
25
+ --field file=${{ matrix.file }} \
26
+ --field file-ref=main \
27
+ --field create-pr=true
28
+ env:
29
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments