Skip to content

Releases: probot/adapter-github-actions

v3.0.1

10 Feb 21:23
8154e45

Choose a tag to compare

3.0.1 (2021-02-10)

Bug Fixes

  • deps: move nock to devDependencies (#21) (8154e45)

v3.0.0

10 Feb 18:52

Choose a tag to compare

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)

v2.0.0

01 Sep 22:09
26c675d

Choose a tag to compare

2.0.0 (2020-09-01)

Features

BREAKING CHANGES

  • See changelog for Probot v10

v1.0.5

01 Sep 21:49

Choose a tag to compare

1.0.5 (2020-09-01)

Bug Fixes

  • disable event subscription verification (#9) (f01ebf8), closes #1