Skip to content

Commit 8d0f6e7

Browse files
authored
Shared configs/workflows/automation (#159)
* update workflow paths * [email protected]
1 parent c30b210 commit 8d0f6e7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/aiinfo-scheduled-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,16 @@ jobs:
6060
pnpm test package aiinfo
6161
pnpm build package aiinfo
6262
63-
- name: Commit only ./node and ./cache (if any)
63+
- name: Commit only ./node, ./cache, ./src, Changelog.md (if any)
6464
id: maybe_commit
6565
run: |
6666
set -euo pipefail
6767
# Stage only the desired paths
68-
git add -A ./node ./cache || true
68+
git add -A packages/aiinfo/src packages/aiinfo/node packages/aiinfo/cache packages/aiinfo/Changelog.md || true
6969
# If nothing staged, exit early (success)
7070
if git diff --cached --quiet; then
7171
echo "no_changes=true" >> "$GITHUB_OUTPUT"
72-
echo "No changes detected in ./node or ./cache. Exiting successfully."
72+
echo "No changes detected. Exiting successfully."
7373
exit 0
7474
fi
7575
git commit -m "chore(aiinfo): update cache/build [skip ci]"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"vitest": "^3.2.4",
2525
"yaml": "^2.8.1"
2626
},
27-
"version": "2.0.0",
27+
"version": "2.0.1",
2828
"name": "@instructure.ai/shared-configs",
2929
"packageManager": "[email protected]",
3030
"private": true,

0 commit comments

Comments
 (0)