Fixed incorrect use of single quotes in the install OpenSearch guide. #10640
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: Automerge Backport | |
on: | |
pull_request: | |
pull_request_review: | |
types: | |
- submitted | |
check_suite: | |
types: | |
- completed | |
status: {} | |
jobs: | |
automerge-backport: | |
if: | | |
github.repository == 'opensearch-project/documentation-website' && | |
startsWith(github.event.pull_request.head.ref, 'backport/') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Wait some time so that label and approval is up | |
run: sleep 30 | |
- id: automerge | |
name: automerge | |
uses: "pascalgn/[email protected]" | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
MERGE_LABELS: "backport-automerge,!On hold" | |
MERGE_FILTER_AUTHOR: "opensearch-trigger-bot[bot]" | |
MERGE_REQUIRED_APPROVALS: "1" | |
MERGE_RETRIES: "20" | |
MERGE_RETRY_SLEEP: "10000" | |
MERGE_ERROR_FAIL: "true" | |
MERGE_FORKS: "false" | |
MERGE_METHOD: "squash" | |
MERGE_DELETE_BRANCH: "true" |