Skip to content

Commit 9d82b3d

Browse files
update the "this action has been..." statement to be wrapped in <sub> (#39)
1 parent 1dd4537 commit 9d82b3d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

github-actions/lock-closed/lib/bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22001,7 +22001,7 @@ async function run() {
2200122001
const message = 'This issue has been automatically locked due to inactivity.\n' +
2200222002
'Please file a new issue if you are encountering a similar or related problem.\n\n' +
2200322003
`Read more about our [automatic conversation locking policy](${policyUrl}).\n\n` +
22004-
'_This action has been performed automatically by a bot._';
22004+
'<sub>_This action has been performed automatically by a bot._</sub>';
2200522005
const maxPerExecution = Math.min(+core_5('locks-per-execution') || 1, 400);
2200622006
const repoToken = core_5('github-token', { required: true });
2200722007
const client = new github_2(repoToken);

github-actions/lock-closed/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async function run(): Promise<void> {
3232
'This issue has been automatically locked due to inactivity.\n' +
3333
'Please file a new issue if you are encountering a similar or related problem.\n\n' +
3434
`Read more about our [automatic conversation locking policy](${policyUrl}).\n\n` +
35-
'_This action has been performed automatically by a bot._';
35+
'<sub>_This action has been performed automatically by a bot._</sub>';
3636

3737
const maxPerExecution = Math.min(+core.getInput('locks-per-execution') || 1, 400);
3838
const repoToken = core.getInput('github-token', { required: true });

0 commit comments

Comments
 (0)