Skip to content

chore: update asset registry #7

chore: update asset registry

chore: update asset registry #7

Workflow file for this run

name: approve
on:
pull_request:
branches:
- main
types:
- opened
- edited
- synchronize
pull_request_target:
types:
- opened
- edited
- synchronize
jobs:
commit-changes:
name: Commit Changes
runs-on: ubuntu-latest
steps:
- name: add automerge label
uses: actions-ecosystem/action-add-labels@v1
with:
labels: automerge
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Automated Registry Update
file_pattern: '*.json'
disable_globbing: true
auto-approve:
name: 'Auto Approve PR'
runs-on: ubuntu-latest
needs: commit-changes
permissions:
pull-requests: write
if: github.actor == 'dependabot[bot]' || github.actor == 'TarikGul' || github.actor == 'marshacb'
steps:
- run: echo github actor is ${{github.actor}}
- uses: hmarr/auto-approve-action@v3
with:
review-message: 'Auto approved PR'
github-token: ${{ secrets.GITHUB_TOKEN }}