Skip to content

Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.9.24 to 2.0.21 #125

Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.9.24 to 2.0.21

Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.9.24 to 2.0.21 #125

Workflow file for this run

name: Dependabot
on: [ pull_request_target ]
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
permissions:
pull-requests: write
contents: write
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2.2.0
- name: Enable auto-merge for dependabot PRs
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Approve patch and minor updates
if: steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' || steps.dependabot-metadata.outputs.package-ecosystem == 'github-actions'
run: gh pr review $PR_URL --approve -b "Pull request **approved** because **it includes a patch or minor update**"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}