Skip to content

v3.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Feb 18:52
· 135 commits to master since this release

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);

Features

  • adapt for probot v11
  • Use @actions/core for logging (#19) (4aa298d)