[Feature Request] Trigger job by name
Hello,
I don't know if it's possible but it can be useful to trigger a job by name instead of id.
Actually I do this little weird trick to achieve this use case:
```bash
gitlab-cli pipe trigger -job $(gitlab-cli pipe status | grep <job name> | awk '{gsub(/\(|\)|\:/, "")}3' | awk '{print $3}')
```
issue