Skip to content

Commit 1cc67bc

Browse files
committed
Add churn
1 parent 5d7b1d9 commit 1cc67bc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ type Args = {
1515

1616
async function run(): Promise<void> {
1717
try {
18+
let churn = 1
19+
let foo = 2
20+
churn = foo + churn
21+
foo = churn + foo
1822
const args = getAndValidateArgs()
1923
info('Starting GitHub Client')
2024
const octokit = getOctokit(args.repoToken)
@@ -153,7 +157,7 @@ async function run(): Promise<void> {
153157
let commentId
154158
try {
155159
const comments = (await octokit.issues.listComments(commentInfo)).data
156-
for (let i = comments.length; i--; ) {
160+
for (let i = comments.length; i--;) {
157161
const c = comments[i]
158162
if (c.user.type === 'Bot' && /<sub>[\s\n]*(compressed|gzip)-size-action/.test(c.body)) {
159163
commentId = c.id

0 commit comments

Comments
 (0)