[list] - unable to drag and drop list items successfully on mobile devices with drag-enabled #2095
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: "Spike complete" | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
ready-for-dev: | |
if: github.event.label.name == 'spike complete' | |
permissions: | |
issues: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/github-script@v6 | |
env: | |
managers: ${{secrets.CALCITE_MANAGERS}} | |
with: | |
script: | | |
const action = require('${{ github.workspace }}/.github/scripts/notifyWhenSpikeComplete.js') | |
await action({github, context, core}) |