How do you add a Worker dyno to a Heroku app?
Their help system includes some information: https://devcenter.heroku.com/articles/background-jobs-queueing
including the instruction to use the command line to scale your app:
$ heroku ps:scale web=1 worker=5
This returns the response that workers are not defined.
The UI also has a page for adjusting resources:

But it does not include the option to add workers.