Skip to content

Bump com.android.tools.build:gradle from 8.2.2 to 8.4.0 #631

Bump com.android.tools.build:gradle from 8.2.2 to 8.4.0

Bump com.android.tools.build:gradle from 8.2.2 to 8.4.0 #631

Workflow file for this run

name: Dependabot auto-label
on: pull_request_target
permissions:
pull-requests: write
issues: write
repository-projects: write
jobs:
dependabot:
runs-on: ubuntu-20.04
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/[email protected]
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Add a label for all production dependencies
if: ${{ steps.metadata.outputs.dependency-type == 'direct:production' }}
run: gh pr edit "$PR_URL" --add-label "production"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Add a label for all development dependencies
if: ${{ steps.metadata.outputs.dependency-type == 'direct:development' }}
run: gh pr edit "$PR_URL" --add-label "development"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}