Matt

Results 51 comments of Matt

This is great, can you post a few examples of what the workflow path would look like?

@benc-uk is there a reason we can get some of these PRs merged? :)

I also run multiple workflows however I have them broken out in my primary one so I can get alerted if/when one of them fails. I don't think having this...

Sure, here is my setup. ## Primary workflow which triggers & waits (`version.yml`) ```yml jobs: # https://github.com/benc-uk/workflow-dispatch # this is the workflow trigger which causes my `test.yml` to get run...

I do have post build stuff going on, I just included the relevant portion that gets the point across. You can trigger and wait on as many workflows as you...

I've had this issue for months, it would be great if there was a solution.

@SalahAdDin were you able to figure out a solution? If so what changes did you make. I have a pretty basic `typescript` setup and I'm using `.stories.tsx` for my Storybook...

I am having the same issue ``` install-peerdeps @cypress/webpack-preprocessor install-peerdeps v3.0.3 It seems as if you are using Yarn. Would you like to use Yarn for the installation? (y/n) y...

I was able to accomplish this by adding the following to my CSS ``` .is-hovered { cursor: grab; cursor: -moz-grab; cursor: -webkit-grab; } .sortable-placeholder { cursor: grabbing !important; cursor: -moz-grabbing...

My config was as follows. I'll setup a codepen with a sample. ``` sortable('.sortable', { forcePlaceholderSize: true, placeholderClass: 'sortable-placeholder', hoverClass: 'is-hovered' }); ```