-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into release-please--branches--main
* main: docs: update component READMEs (#9446) build: update browserslist db (#9445) ci(renovate): remove noisy sections from the PR body (#9441) refactor(storybook): replace fake knobs with controls for simple stories (#9385) build: remove unnecessary dist files before publishing (#9439) build(deps): update dependency axe-core to v4.9.1 (#9436) ci: combine related actions into single workflow file (#9434) build(deps): update dependency @floating-ui/dom to v1.6.5 (#9435) build(deps): update angular monorepo to v17.3.10 (#9431) ci: upload dist to github releases (#9428) ci: skip chromatic for release and doc update PRs (#9430) ci: enable npm provenance statements (#9429)
- Loading branch information
Showing
105 changed files
with
4,780 additions
and
4,335 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Add Issue Labels | ||
on: | ||
issues: | ||
types: [opened, edited] | ||
jobs: | ||
product-label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Add Esri Product Label | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const action = require('${{ github.workspace }}/.github/scripts/addEsriProductLabel.js') | ||
await action({github, context, core}) | ||
- name: Add Calcite Package Label | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const action = require('${{ github.workspace }}/.github/scripts/addCalcitePackageLabel.js') | ||
await action({github, context, core}) | ||
- name: Add Priority Label | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const action = require('${{ github.workspace }}/.github/scripts/addPriorityLabel.js') | ||
await action({github, context, core}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Issue Notifications | ||
on: | ||
issues: | ||
types: [labeled] | ||
jobs: | ||
determine-action: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name : "Assign for verification" | ||
if: github.event.label.name == '3 - installed' | ||
uses: actions/github-script@v7 | ||
env: | ||
ISSUE_VERIFIERS: ${{secrets.ISSUE_VERIFIERS}} | ||
CALCITE_DESIGNERS: ${{secrets.CALCITE_DESIGNERS}} | ||
with: | ||
script: | | ||
const action = require('${{ github.workspace }}/.github/scripts/assignForVerification.js') | ||
await action({github, context, core}) | ||
- name: "Spike complete notification" | ||
if: github.event.label.name == 'spike complete' | ||
uses: actions/github-script@v7 | ||
env: | ||
managers: ${{secrets.CALCITE_MANAGERS}} | ||
with: | ||
script: | | ||
const action = require('${{ github.workspace }}/.github/scripts/notifyWhenSpikeComplete.js') | ||
await action({github, context, core}) | ||
- name: "Ready for dev notification" | ||
if: github.event.label.name == 'ready for dev' | ||
uses: actions/github-script@v7 | ||
env: | ||
managers: ${{secrets.CALCITE_MANAGERS}} | ||
with: | ||
script: | | ||
const action = require('${{ github.workspace }}/.github/scripts/notifyWhenReadyForDev.js') | ||
await action({github, context, core}) | ||
- name: "New component notification" | ||
if: github.event.label.name == 'new component' | ||
uses: actions/github-script@v7 | ||
env: | ||
designers: ${{secrets.CALCITE_DESIGNERS}} | ||
with: | ||
script: | | ||
const action = require('${{ github.workspace }}/.github/scripts/notifyAboutNewComponent.js') | ||
await action({github, context, core}) | ||
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 0 additions & 27 deletions
27
.github/workflows/pr-tests_eslint-plugin-calcite-components.yml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Schedule Updates | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
jobs: | ||
component-docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: package.json | ||
- name: generate doc | ||
run: | | ||
npm install | ||
npm --workspace=@esri/calcite-design-tokens run build | ||
npm --workspace=@esri/eslint-plugin-calcite-components run build | ||
npx --workspace=@esri/calcite-components stencil build --docs | ||
npm run --workspace=@esri/calcite-components lint:md | ||
- name: Commit and create pull request | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
base: main | ||
branch: ci/update-component-docs | ||
commit-message: "docs: update component READMEs" | ||
token: ${{ secrets.ADMIN_TOKEN }} | ||
title: "docs: update component READMEs" | ||
body: This PR was automatically generated by the update-doc GitHub action | ||
labels: "docs,skip visual snapshots" | ||
|
||
browserslist-db: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: package.json | ||
cache: npm | ||
- name: Run update-browserslist-db | ||
run: | | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "github-actions[bot]" | ||
npx update-browserslist-db@latest | ||
- name: Commit and create pull request | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
base: main | ||
branch: ci/update-browserslist-db | ||
commit-message: "build: update browserslist db" | ||
title: "build: update browserslist db" | ||
body: "This PR was automatically generated by the update-browserslist-db GitHub action" | ||
token: ${{ secrets.ADMIN_TOKEN }} | ||
labels: "chore,skip visual snapshots" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.