[ISSUE #10668]🐛Align encrypted PKCS#8 tests with canonical configuration errors
#73290
Workflow file for this run
This file contains hidden or 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 PR | |
| on: | |
| pull_request: | |
| types: | |
| - labeled | |
| - unlabeled | |
| - synchronize | |
| - opened | |
| pull_request_review: | |
| types: | |
| - submitted | |
| check_suite: | |
| types: | |
| - completed | |
| status: { } | |
| concurrency: | |
| group: merge-${{ github.event.pull_request.number || github.event.check_suite.head_sha || github.event.sha || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| automerge: | |
| if: >- | |
| github.event_name != 'pull_request' || | |
| (github.event.action != 'labeled' && github.event.action != 'unlabeled') || | |
| github.event.label.name == 'auto merge' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Check bot token | |
| id: bot-token | |
| env: | |
| BOT_TOKEN: "${{ secrets.BOT_TOKEN }}" | |
| run: | | |
| if [ -z "$BOT_TOKEN" ]; then | |
| echo "BOT_TOKEN unavailable; skipping automerge" | |
| echo "available=false" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "available=true" >> "$GITHUB_OUTPUT" | |
| fi | |
| - name: automerge | |
| if: steps.bot-token.outputs.available == 'true' | |
| uses: "pascalgn/automerge-action@v0.16.4" | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.BOT_TOKEN }}" | |
| MERGE_LABELS: "auto merge" | |
| MERGE_METHOD: "squash" | |
| MERGE_COMMIT_MESSAGE: "automatic" | |
| MERGE_FORKS: "true" | |
| MERGE_RETRIES: "6" | |
| MERGE_RETRY_SLEEP: "10000" | |
| MERGE_REQUIRED_APPROVALS: "1" | |
| UPDATE_METHOD: "rebase" |