`glab ci job cancel` does not support --force flag
### Problem to solve
The `glab ci cancel job` does not support the `--force` flag:
```bash
❯ glab ci cancel job --help
Cancel CI/CD jobs.
USAGE
glab ci cancel job <id> [--flags]
EXAMPLES
glab ci cancel job 1504182795
glab ci cancel job 1504182795,1504182795
glab ci cancel job "1504182795 1504182795"
glab ci cancel job 1504182795,1504182795 --dry-run
FLAGS
--dry-run Simulates process, but does not cancel anything.
-h --help Show help for this command.
-R --repo Select another repository. Can use either `OWNER/REPO` or `GROUP/NAMESPACE/REPO` format. Also accepts full URL or Git URL.
```
The API supports this - https://docs.gitlab.com/api/jobs/#cancel-a-job
but the SDK doesn't have the flag. Ideally we would have this so we maintain feature parity with the API.
### Links / references
issue