v3.0.0
BREAKING CHANGES
- package name has been renamed to "@probot/adapter-github-actions"
- the package now has the same export as
"probot"
.
Before
const runProbot = require('probot-actions-adapter');
const app = require('./index');
runProbot(app);
After
const { run } = require("@probot/adapter-github-actions");
const app = require("./app");
run(app);