diff --git a/docs/retriggering.md b/docs/retriggering.md index 8b97b1ee34..d505f1763d 100644 --- a/docs/retriggering.md +++ b/docs/retriggering.md @@ -94,9 +94,16 @@ This is a new feature, so the behaviour may be adjusted in the future. Please reach out back to us for help or with your suggestions. #### Running tests with a specific identifier -It is possible to run a specific job via `/packit test` command. -The user just needs to specify the argument `--identifier ` and Packit will trigger only the job with this identifier. -The whole command should look like this: `/packit test --identifier my-job-id`. +It is possible to run a specific job via the `/packit test` command. + +The user just needs to specify the `--identifier ` argument and Packit will trigger only the job with this identifier. Alternatively, `--id ` and `-i ` are also accepted. +The whole command should look like this: + + /packit test --identifier my-job-id + /packit test --id my-job-id + /packit test -i my-job-id + +All of the above are equivalent. You can also configure [`test_command.default_identifier`](/docs/configuration#default_identifier) to allow commonly used jobs to be triggered without the need for manual specification.