We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad223f6 commit f4e43a5Copy full SHA for f4e43a5
.github/workflows/test.yml
@@ -15,6 +15,6 @@ jobs:
15
- uses: actions/setup-node@v4
16
with:
17
cache: npm
18
- node-version: 16
+ node-version: 20
19
- run: npm ci
20
- run: npm test
app.js
@@ -2,7 +2,7 @@
2
* @param {import('probot').Probot} app
3
*/
4
module.exports = (app) => {
5
- app.log("Yay! The app was loaded!");
+ app.log.info("Yay! The app was loaded!");
6
7
app.on("issues.opened", async (context) => {
8
return context.octokit.issues.createComment(
0 commit comments