Hi,
I am having trouble configuring this workflow. I want to trigger a dev workflow, when anything is pushed to master branch, except if the commit is tagged and if the changes were only made on the root directory (so that it does not trigger a new build if I only change the README.md)
I have been trying this, but it triggers everytime… Any thoughts?
on:
push:
branches:
- master
tags-ignore:
- '**'
paths-ignore:
- '*'
Thanks!