@arbor-education/design-system.components 0.5.3 → 0.5.4
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.
- package/.github/workflows/fail-on-no-changeset.yml +7 -1
- package/.github/workflows/pr-checks.yml +1 -1
- package/.github/workflows/pr-housekeeping.yaml +1 -1
- package/.github/workflows/pr-review-approve.yaml +18 -0
- package/.github/workflows/secret-scanner.yaml +1 -1
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
|
@@ -26,4 +26,10 @@ jobs:
|
|
|
26
26
|
- name: Check for changeset
|
|
27
27
|
if: ${{ !startsWith(github.head_ref, 'changeset-release/') }}
|
|
28
28
|
run: |
|
|
29
|
-
|
|
29
|
+
NEW_CHANGESETS=$(git diff --name-only origin/${{ github.base_ref }}...HEAD -- .changeset/ | grep -v 'README\.md' || true)
|
|
30
|
+
if [ -z "$NEW_CHANGESETS" ]; then
|
|
31
|
+
echo "No changeset found in this PR. Please add a changeset file using 'yarn changeset'."
|
|
32
|
+
exit 1
|
|
33
|
+
fi
|
|
34
|
+
echo "Changeset(s) found in this PR:"
|
|
35
|
+
echo "$NEW_CHANGESETS"
|
|
@@ -13,6 +13,6 @@ on:
|
|
|
13
13
|
|
|
14
14
|
jobs:
|
|
15
15
|
jira-title-and-link:
|
|
16
|
-
uses: arbor-education/gha.workflows/.github/workflows/pr-jira-check-template.yaml@
|
|
16
|
+
uses: arbor-education/gha.workflows/.github/workflows/pr-jira-check-template.yaml@v2
|
|
17
17
|
secrets:
|
|
18
18
|
jira_token: ${{ secrets.JIRA_TOKEN }}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
name: PR Review & Approve
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types: [opened, synchronize, ready_for_review, reopened]
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
contents: read
|
|
9
|
+
pull-requests: write
|
|
10
|
+
issues: read
|
|
11
|
+
id-token: write
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
pr-review-approve:
|
|
15
|
+
uses: arbor-education/gha.workflows/.github/workflows/pr-review-approve-template.yaml@v2
|
|
16
|
+
secrets:
|
|
17
|
+
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
|
18
|
+
ARBOR_AUTOMATION_ORG_GHA_TOKEN: ${{ secrets.ARBOR_AUTOMATION_ORG_GHA_TOKEN }}
|
|
@@ -11,6 +11,6 @@ permissions:
|
|
|
11
11
|
|
|
12
12
|
jobs:
|
|
13
13
|
secrets-scanner:
|
|
14
|
-
uses: arbor-education/gha.workflows/.github/workflows/secret-scanner-template.yaml@
|
|
14
|
+
uses: arbor-education/gha.workflows/.github/workflows/secret-scanner-template.yaml@v2
|
|
15
15
|
secrets:
|
|
16
16
|
JIRA_SA_CREATE_ISSUE: ${{ secrets.JIRA_SA_CREATE_ISSUE }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.5.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#136](https://github.com/arbor-education/design-system.components/pull/136) [`703b8a7`](https://github.com/arbor-education/design-system.components/commit/703b8a749ce1330991575668f5d51dae01b60372) Thanks [@awconstable](https://github.com/awconstable)! - Update shared CI workflow files to v2
|
|
8
|
+
|
|
3
9
|
## 0.5.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|