Support velox.plugin.replace option
#245
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
| --- | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| branches: | |
| - 1.x | |
| push: | |
| branches: | |
| - 1.x | |
| name: 🧹 Fix PHP coding standards | |
| jobs: | |
| commit-linting: | |
| timeout-minutes: 4 | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| steps: | |
| - name: 📦 Check out the codebase | |
| uses: actions/checkout@v5 | |
| - name: 🧐 Lint commits using "commitlint" | |
| uses: wagoid/[email protected] | |
| with: | |
| configFile: ${{ github.workspace }}/.github/.commitlint.config.mjs | |
| failOnWarnings: false | |
| failOnErrors: false | |
| helpURL: 'https://github.com/conventional-changelog/commitlint/#what-is-commitlint' | |
| yaml-linting: | |
| timeout-minutes: 4 | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| steps: | |
| - name: 📦 Check out the codebase | |
| uses: actions/checkout@v5 | |
| - name: 🧐 Lint YAML files | |
| uses: ibiqlik/action-yamllint@v3 | |
| with: | |
| config_file: .github/.yamllint.yaml | |
| file_or_dir: '.' | |
| strict: true | |
| markdown-linting: | |
| timeout-minutes: 4 | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| cancel-in-progress: true | |
| group: markdown-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| steps: | |
| - name: 📦 Check out the codebase | |
| uses: actions/checkout@v5 | |
| - name: 🧐 Lint Markdown files | |
| uses: DavidAnson/[email protected] | |
| with: | |
| globs: | | |
| *.md | |
| !CHANGELOG.md | |
| coding-standards: | |
| permissions: | |
| contents: write | |
| uses: spiral/gh-actions/.github/workflows/cs-fix.yml@master |