Skip to content

Research CSS light-dark() function to replace @media prefers-color-scheme #11299

Research CSS light-dark() function to replace @media prefers-color-scheme

Research CSS light-dark() function to replace @media prefers-color-scheme #11299

name: Issue Notifications
on:
issues:
types: [labeled]
jobs:
determine-action:
runs-on: ubuntu-latest
permissions:
issues: write
actions: write
steps:
- uses: actions/checkout@v6
- name: "Installed notification"
if: github.event.label.name == '4 - installed'
uses: actions/github-script@v9
env:
ISSUE_VERIFIERS: ${{secrets.ISSUE_VERIFIERS}}
with:
script: |
const action = require('${{ github.workspace }}/.github/scripts/notifyWhenInstalled.js')
await action({github, context, core})
- name: "Spike complete notification"
if: github.event.label.name == 'spike complete'
uses: actions/github-script@v9
env:
PLANNERS: ${{secrets.CALCITE_PLANNERS}}
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 == '2 - ready for dev'
uses: actions/github-script@v9
env:
PLANNERS: ${{secrets.CALCITE_PLANNERS}}
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@v9
env:
DESIGNERS: ${{secrets.CALCITE_DESIGNERS}}
with:
script: |
const action = require('${{ github.workspace }}/.github/scripts/notifyAboutNewComponent.js')
await action({github, context, core})
- name: "Icon request notification"
if: github.event.label.name == 'calcite-ui-icons'
uses: actions/github-script@v9
env:
ICONS_TEAM: ${{secrets.ICON_LEADS}}
with:
script: |
const action = require('${{ github.workspace }}/.github/scripts/notifyAboutIconRequest.js')
await action({github, context, core})