Skip to content
Compare
Choose a tag to compare
@Eomm Eomm released this 13 Dec 17:06
· 330 commits to main since this release

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