Skip to content

Commit 235ea15

Browse files
authored
docs(README): fix require statement (#22)
1 parent 8154e45 commit 235ea15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ module.exports = (app) => {
1818
};
1919
```
2020

21-
Then in the entrypoint of your GitHub Action, require `@probot/github-action` instead of `probot`
21+
Then in the entrypoint of your GitHub Action, require `@probot/adapter-github-actions` instead of `probot`
2222

2323
```js
2424
// index.js
25-
const { run } = require("@probot/github-action");
25+
const { run } = require('@probot/adapter-github-actions')
2626
const app = require("./app");
2727

2828
run(app).catch((error) => {

0 commit comments

Comments
 (0)