# synced from @nextcloud/android-config name: Auto approve sync on: pull_request_target: branches: - master - main types: - opened - reopened - synchronize - labeled concurrency: group: sync-approve-${{ github.head_ref || github.run_id }} cancel-in-progress: true permissions: pull-requests: write jobs: auto-approve: name: Auto approve sync runs-on: ubuntu-latest if: ${{ contains(github.event.pull_request.labels.*.name, 'sync') && github.actor == 'nextcloud-android-bot' }} steps: - uses: hmarr/auto-approve-action@0902bf83c300168cda5cd6856731a0fcb0e731c2 # v3.2.0 with: github-token: "${{ secrets.GITHUB_TOKEN }}"