mirror of
https://github.com/nextcloud/documentation.git
synced 2026-01-03 10:20:02 +07:00
Bumps [hmarr/auto-approve-action](https://github.com/hmarr/auto-approve-action) from 3.2.1 to 4.0.0. - [Release notes](https://github.com/hmarr/auto-approve-action/releases) - [Commits](https://github.com/hmarr/auto-approve-action/compare/v3.2.1...v4.0.0) --- updated-dependencies: - dependency-name: hmarr/auto-approve-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
661 B
YAML
27 lines
661 B
YAML
name: AutoMerge Transifex Pull Requests
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
approve:
|
|
runs-on: ubuntu-latest
|
|
name: Approve
|
|
steps:
|
|
- uses: hmarr/auto-approve-action@v4.0.0
|
|
if: github.actor == 'transifex-integration[bot]'
|
|
with:
|
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
automerge:
|
|
runs-on: ubuntu-latest
|
|
name: Auto-merge
|
|
needs: approve
|
|
steps:
|
|
- uses: pascalgn/automerge-action@v0.16.2
|
|
if: github.actor == 'transifex-integration[bot]'
|
|
env:
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
MERGE_LABELS: ""
|
|
MERGE_RETRIES: 10
|
|
MERGE_RETRY_SLEEP: 120000
|