mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 17:25:55 -05:00
30 lines
654 B
YAML
30 lines
654 B
YAML
|
---
|
||
|
name: Dependabot automation
|
||
|
|
||
|
on: # yamllint disable-line rule:truthy
|
||
|
pull_request:
|
||
|
types:
|
||
|
- opened
|
||
|
- synchronize
|
||
|
|
||
|
permissions:
|
||
|
contents: write
|
||
|
pull-requests: write
|
||
|
|
||
|
jobs:
|
||
|
dependabot:
|
||
|
env:
|
||
|
PR_URL: ${{github.event.pull_request.html_url}}
|
||
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
||
|
runs-on: ubuntu-latest
|
||
|
if: github.actor == 'dependabot[bot]'
|
||
|
steps:
|
||
|
- name: Fetch Dependabot metadata
|
||
|
id: metadata
|
||
|
uses: dependabot/fetch-metadata@v1
|
||
|
with:
|
||
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
||
|
- name: Approve the PR
|
||
|
run: gh pr review --approve "${PR_URL}"
|
||
|
...
|