Skip to content

Releases: fastify/github-action-merge-dependabot

v3.1.6

15 May 22:51
26a8e23
Compare
Choose a tag to compare

What's Changed

  • chore(deps): bump actions-toolkit from 5da7919 to 6ac2744 by @dependabot in #204
  • chore(deps-dev): bump eslint from 8.14.0 to 8.15.0 by @dependabot in #206
  • chore(deps): bump actions-toolkit from 6ac2744 to 45a65d6 by @dependabot in #208
  • chore(deps-dev): bump tap from 16.1.0 to 16.2.0 by @dependabot in #209
  • chore(deps-dev): bump sinon from 13.0.2 to 14.0.0 by @dependabot in #205
  • chore(deps-dev): bump husky from 7.0.4 to 8.0.0 by @dependabot in #207
  • fix: regenerate build output and package-lock.json by @simoneb in #212
  • chore(deps-dev): bump husky from 7.0.4 to 8.0.1 by @dependabot in #214

Full Changelog: v3...v3.1.6

v3.1.5

06 May 08:16
4c19b68
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3...v3.1.5

v3.1.4

25 Apr 09:21
3ef36a0
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3...v3.1.4

v3.1.3

15 Apr 14:55
56d9926
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3...v3.1.3

v3.1.2

12 Apr 21:34
aa24d54
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3...v3.1.2

v3.1.1

11 Apr 23:11
6365b15
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3...v3.1.1

v3.1.0

06 Apr 12:14
2d4bd4e
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3...v3.1.0

v3.0.2

13 Dec 17:06
Compare
Choose a tag to compare

How to upgrade from 2.x to new 3.x

  • Update the action version.
  • Add the new permissions configuration into your workflow or, instead, you can set the permissions rules on the repository or on the organization.
  • If you have customized the api-url you can:

Migration example:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      # ...

  automerge:
    needs: build
    runs-on: ubuntu-latest
+    permissions:
+      pull-requests: write
+      contents: write
    steps:
-     - uses: fastify/github-action-merge-dependabot@v2.1.1
+     - uses: fastify/github-action-merge-dependabot@v3
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}

What's Changed

  • chore: add migration guide by @Eomm in #130
  • hotfix: release link into upgrade message by @Eomm in #131

Full Changelog: v3.0.1...v3.0.2

v3.0.1

13 Dec 16:17
Compare
Choose a tag to compare

How to upgrade from 2.x to new 3.x

  • Update the action version.
  • Add the new permissions configuration into your workflow or, instead, you can set the permissions rules on the repository or on the organization.
  • If you have customized the api-url you can:

Migration example:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      # ...

  automerge:
    needs: build
    runs-on: ubuntu-latest
+    permissions:
+      pull-requests: write
+      contents: write
    steps:
-     - uses: fastify/github-action-merge-dependabot@v2.1.1
+     - uses: fastify/github-action-merge-dependabot@v3.0.0
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}

What's Changed

Full Changelog: v3...v3.0.1

v3.0.0

13 Dec 14:35
Compare
Choose a tag to compare

How to upgrade from 2.x to new 3.x

  • Update the action version.
  • Add the new permissions configuration into your workflow or, instead, you can set the permissions rules on the repository or on the organization.
  • If you have customized the api-url you can:

Migration example:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      # ...

  automerge:
    needs: build
    runs-on: ubuntu-latest
+    permissions:
+      pull-requests: write
+      contents: write
    steps:
-     - uses: fastify/github-action-merge-dependabot@v2.1.1
+     - uses: fastify/github-action-merge-dependabot@v3.0.0
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}

What's Changed

New Contributors

Full Changelog: v2.7.1...v3.0.0