Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into geospatialem/chore-…
Browse files Browse the repository at this point in the history
…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)
  ...
  • Loading branch information
benelan committed Jun 27, 2023
2 parents 9d8e644 + edb6781 commit f0c9d87
Show file tree
Hide file tree
Showing 116 changed files with 1,806 additions and 809 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy-latest.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Deploy Latest
on:
workflow_dispatch:
push:
branches: [master]
permissions:
Expand All @@ -9,7 +10,7 @@ jobs:
release-please:
runs-on: ubuntu-20.04
steps:
- uses: google-github-actions/release-please-action@v3
- uses: google-github-actions/release-please-action@v3.7.9
id: release
with:
command: manifest
Expand All @@ -22,7 +23,7 @@ jobs:
uses: actions/checkout@v3
with:
token: ${{ secrets.ADMIN_TOKEN }}
ref: release-please
ref: master
- name: Setup Node
uses: actions/setup-node@v3
with:
Expand Down
32 changes: 22 additions & 10 deletions .github/workflows/design-complete.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,29 @@ jobs:
/* Modify labels */
// Remove "Design" label
await github.rest.issues.removeLabel({
...issueProps,
name: "design"
});
/* Tries to remove labels */
/* If the label is not associated with the issue,
the error is logged and the script will continue. */
// Remove "1 - assigned" label
await github.rest.issues.removeLabel({
...issueProps,
name: "1 - assigned"
});
// Tries to remove "Design" label
try {
await github.rest.issues.removeLabel({
...issueProps,
name: "design"
});
} catch(err) {
console.log("The 'design' label is not associated with the issue", err);
}
// Try to remove "1 - assigned" label
try {
await github.rest.issues.removeLabel({
...issueProps,
name: "1 - assigned"
});
} catch(err) {
console.log("The '1 - assigned' label is not associated with the issue", err);
}
// Add labels
await github.rest.issues.addLabels({
Expand Down
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"packages/calcite-components": "1.4.2",
"packages/calcite-components-react": "1.4.2"
"packages/calcite-components": "1.4.3",
"packages/calcite-components-react": "1.4.3"
}
Loading

0 comments on commit f0c9d87

Please sign in to comment.