Skip to content

Commit f0c9d87

Browse files
committed
Merge remote-tracking branch 'origin/master' into geospatialem/chore-issue-template-checkbox
* origin/master: (32 commits) ci: double build cc when publishing to workaround stencil types bug (#7227) build: bump package versions back to 1.5.0-next.5 (#7228) chore: release latest (#7144) ci: hardcode release version due to reverting feat (#7225) fix(tree-item): ensure expanded tree-item is displayed when expanded and made visible (#7216) ci(release-please): pin action version and allow manually running action (#7222) fix(input, input-number): allows numeric characters. (#7213) build(t9n): generate json file containing t9n values (#7214) chore: release next fix(combobox, dropdown, input-date-picker, input-time-picker, popover, tooltip): Prevent repositioning from affecting other floating components (#7178) build: update browserslist db (#7192) build: ignore node_modules and build outputs when watching for changes during stencil tests (#7209) test: set up `disabled` helper to run a test per use case (#7089) ci: set design complete label conditionals (#7206) chore: release next fix(list): update selectedItems property on all item selection changes (#7204) chore: fix sorting logic for t9nmanifest entries (#7203) fix(radio-button): focuses first focusable radio-button element in group. (#7152) chore: release next fix(alert): update alert queue when an alert is removed from the DOM (#7189) ...
2 parents 9d8e644 + edb6781 commit f0c9d87

File tree

116 files changed

+1806
-809
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+1806
-809
lines changed

.github/workflows/deploy-latest.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Deploy Latest
22
on:
3+
workflow_dispatch:
34
push:
45
branches: [master]
56
permissions:
@@ -9,7 +10,7 @@ jobs:
910
release-please:
1011
runs-on: ubuntu-20.04
1112
steps:
12-
- uses: google-github-actions/release-please-action@v3
13+
- uses: google-github-actions/release-please-action@v3.7.9
1314
id: release
1415
with:
1516
command: manifest
@@ -22,7 +23,7 @@ jobs:
2223
uses: actions/checkout@v3
2324
with:
2425
token: ${{ secrets.ADMIN_TOKEN }}
25-
ref: release-please
26+
ref: master
2627
- name: Setup Node
2728
uses: actions/setup-node@v3
2829
with:

.github/workflows/design-complete.yml

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,29 @@ jobs:
4040
4141
/* Modify labels */
4242
43-
// Remove "Design" label
44-
await github.rest.issues.removeLabel({
45-
...issueProps,
46-
name: "design"
47-
});
43+
/* Tries to remove labels */
44+
/* If the label is not associated with the issue,
45+
the error is logged and the script will continue. */
4846
49-
// Remove "1 - assigned" label
50-
await github.rest.issues.removeLabel({
51-
...issueProps,
52-
name: "1 - assigned"
53-
});
47+
// Tries to remove "Design" label
48+
try {
49+
await github.rest.issues.removeLabel({
50+
...issueProps,
51+
name: "design"
52+
});
53+
} catch(err) {
54+
console.log("The 'design' label is not associated with the issue", err);
55+
}
56+
57+
// Try to remove "1 - assigned" label
58+
try {
59+
await github.rest.issues.removeLabel({
60+
...issueProps,
61+
name: "1 - assigned"
62+
});
63+
} catch(err) {
64+
console.log("The '1 - assigned' label is not associated with the issue", err);
65+
}
5466
5567
// Add labels
5668
await github.rest.issues.addLabels({

.release-please-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"packages/calcite-components": "1.4.2",
3-
"packages/calcite-components-react": "1.4.2"
2+
"packages/calcite-components": "1.4.3",
3+
"packages/calcite-components-react": "1.4.3"
44
}

0 commit comments

Comments
 (0)