I need to skip a GitLab CI job in my pipeline, if the only changes part of my commit/merge request
are related to *.md, eslintrc.json or jsconfig.json
files.
Examples:
- If these files have changed, but others like *.js have changed too: job should run.
- If these files are not changed at all, but other *.js files have changed: job should run.
- If README.md and eslintrc.json have changed and nothing else has changed: job should not run.
I have tried to accomplish this, but I have not found except:changes
nor rules:when:never
useful so far. How can I do it?