Skip to content

Releases: probot/adapter-github-actions

v4.0.0

12 Mar 16:58
20697a0
Compare
Choose a tag to compare

4.0.0 (2024-03-12)

Features

BREAKING CHANGES

  • Move to ESM

v3.1.3

07 Oct 23:40
326e529
Compare
Choose a tag to compare

3.1.3 (2022-10-07)

Bug Fixes

  • README: Correct example filename (#59) (326e529)

v3.1.2

05 Sep 20:58
522f027
Compare
Choose a tag to compare

3.1.2 (2022-09-05)

Bug Fixes

  • deps: bump pino from 6.14.0 to 8.5.0 (522f027)

v3.1.1

19 Jan 20:14
585073e
Compare
Choose a tag to compare

3.1.1 (2022-01-19)

Bug Fixes

  • security: bump minimal version of probot (#37) (585073e)

v3.1.0

07 Jan 23:13
ba0dc7a
Compare
Choose a tag to compare

3.1.0 (2022-01-07)

Features

v3.0.1

10 Feb 21:23
8154e45
Compare
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
Compare
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
Compare
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
Compare
Choose a tag to compare

1.0.5 (2020-09-01)

Bug Fixes

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