@tscircuit/eval 0.0.117 → 0.0.118
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
name: Update @tscircuit/core
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
update-core:
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
|
|
10
|
+
steps:
|
|
11
|
+
- name: Checkout code
|
|
12
|
+
uses: actions/checkout@v4
|
|
13
|
+
|
|
14
|
+
- name: Setup Bun
|
|
15
|
+
uses: oven-sh/setup-bun@v1
|
|
16
|
+
|
|
17
|
+
- name: Update @tscircuit/core
|
|
18
|
+
run: bun update --latest @tscircuit/core
|
|
19
|
+
|
|
20
|
+
- name: Check for changes
|
|
21
|
+
id: git-check
|
|
22
|
+
run: |
|
|
23
|
+
git diff --exit-code || echo "changes=true" >> $GITHUB_OUTPUT
|
|
24
|
+
|
|
25
|
+
- name: Create Pull Request
|
|
26
|
+
if: steps.git-check.outputs.changes == 'true'
|
|
27
|
+
uses: peter-evans/create-pull-request@v5
|
|
28
|
+
with:
|
|
29
|
+
commit-message: "chore: update @tscircuit/core to latest version"
|
|
30
|
+
title: "chore: update @tscircuit/core to latest version"
|
|
31
|
+
body: |
|
|
32
|
+
Automated update of @tscircuit/core to the latest version.
|
|
33
|
+
|
|
34
|
+
This PR was created automatically by the update-tscircuit-core GitHub workflow.
|
|
35
|
+
branch: update-tscircuit-core
|
|
36
|
+
base: main
|
|
37
|
+
token: ${{ secrets.TSCIRCUIT_BOT_GITHUB_TOKEN }}
|
|
38
|
+
committer: tscircuit-bot <bot@tscircuit.com>
|
|
39
|
+
author: tscircuit-bot <bot@tscircuit.com>
|
package/package.json
CHANGED