Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): bump tap from 16.3.8 to 18.0.1 #598

Merged
merged 6 commits into from
Sep 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.env
.npmrc
.nyc_output
.tap
.vercel
coverage
node_modules
Expand Down
9 changes: 5 additions & 4 deletions lib/pro/set-status.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,14 @@ Read more about [WIP configuration](https://github.com/wip/app#configuration)`,
</table>`;
}

/* istanbul ignore next */
/* c8 ignore start */
if (PRO_PLAN_FOR_FREE.includes(repository.owner.login.toLowerCase())) {
checkOptions.output.summary += `
### 🆓💸 The account ${repository.owner.login} is [enabled for the pro plan for free](https://github.com/wip/app/blob/master/pro-plan-for-free.js)

Please consider [signing up for the pro plan](https://github.com/marketplace/wip), all revenue is donated to [Processing | p5.js](https://p5js.org/download/support.html) – one of the most diverse and impactful Open Source community there is.`;
### 🆓💸 The account ${repository.owner.login} is [enabled for the pro plan for free](https://github.com/wip/app/blob/master/pro-plan-for-free.js)
Please consider [signing up for the pro plan](https://github.com/marketplace/wip), all revenue is donated to [Processing | p5.js](https://p5js.org/download/support.html) – one of the most diverse and impactful Open Source community there is.`;
}
/* c8 ignore stop */

return context.octokit.checks.create(context.repo(checkOptions));
}
Loading