adding bate #27746
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto merge | |
on: | |
workflow_dispatch: | |
workflow_call: | |
pull_request_target: | |
branches: [main] | |
jobs: | |
auto-merge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Sleep for 60 seconds | |
run: sleep 60s | |
shell: bash | |
- name: Merge pull requests (automerge-action) | |
uses: pascalgn/automerge-action@v0.16.2 | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
MERGE_LABELS: "automerge" | |
MERGE_METHOD: "squash" | |
BASE_BRANCHES: "main" |