I want to know if I can comment as a bot in PRs with my connect application, I am calling comment API and it simply comments on behalf of the user, I want to see my application name with [bot] tag there can you help me with this.
const jwtToken = atlassianJwt.encodeSymmetric(
{
iss: 'application-name',
iat: now.unix(),
exp: now.add(5, 'minutes').unix(),
qsh: atlassianJwt.createQueryStringHash(
atlassianJwt.fromMethodAndUrl(method, resource),
),
sub: data.clientKey,
},
installation.sharedSecret
);