Skip to content

Commit f4e43a5

Browse files
authored
fix: update repository for Probot v13 (#36)
BREAKING CHANGE: Require NodeJS >=18
1 parent ad223f6 commit f4e43a5

File tree

4 files changed

+7406
-1951
lines changed

4 files changed

+7406
-1951
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
- uses: actions/setup-node@v4
1616
with:
1717
cache: npm
18-
node-version: 16
18+
node-version: 20
1919
- run: npm ci
2020
- run: npm test

app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @param {import('probot').Probot} app
33
*/
44
module.exports = (app) => {
5-
app.log("Yay! The app was loaded!");
5+
app.log.info("Yay! The app was loaded!");
66

77
app.on("issues.opened", async (context) => {
88
return context.octokit.issues.createComment(

0 commit comments

Comments
 (0)