How to make my discord bot only reply question in specific channel?

Just check the message's channel id with message.channel.id before replying:

if message.content.startswith("Hey Rikky!") and message.channel.id == "YourChannelId":
    await message.channel.send('Always Here!')