Honor quote preference for legacy-quoted scalars #363
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
| # Copyright 2025 The go-yaml Project Contributors | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: Forbid Merge Commits | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| permissions: read-all | |
| jobs: | |
| forbid-merge-commits: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run Forbid Merge Commits Action | |
| # yamllint disable-line rule:line-length | |
| uses: motlin/forbid-merge-commits-action@49483ed78d3c59ae66e338ad12edd34c6dac7fdf # v1.0.8 | |
| with: | |
| fail-on-merge-commits: true |