Export js format from design-tokens #10440
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
name: "Notify CC Designer Leads of New Component Issue" | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
notify-designer-new-component: | |
if: github.event.label.name == 'new component' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
env: | |
designers: ${{secrets.CALCITE_DESIGNERS}} | |
with: | |
script: | | |
const action = require('${{ github.workspace }}/.github/scripts/notifyAboutNewComponent.js') | |
await action({github, context, core}) |