release: Release opentelemetry-instrumentation-pg 0.33.0 (was 0.32.0) #8
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: Markdown Checks | |
| on: | |
| pull_request: | |
| paths: | |
| - '**/*.md' | |
| permissions: | |
| contents: read | |
| pull-requests: write # required for posting PR review comments | |
| jobs: | |
| markdownlint-check: | |
| name: Markdown Lint Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| # equivalent cli: markdownlint-cli2 "**/*.md" "#**/CHANGELOG.md" --config .markdownlint.json | |
| - name: "Markdown Lint Check" | |
| uses: DavidAnson/markdownlint-cli2-action@v20 | |
| continue-on-error: true | |
| with: | |
| fix: false | |
| globs: | | |
| **/*.md | |
| !**/CHANGELOG.md | |
| markdown-link-check: | |
| name: Markdown Link Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| # equivalent cli: linkspector check | |
| - name: Run linkspector | |
| uses: umbrelladocs/action-linkspector@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| reporter: github-pr-review | |
| fail_on_error: true | |
| spelling-check: | |
| name: Spelling Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: streetsidesoftware/cspell-action@v7 | |
| with: | |
| # Files should be consistent with check:spelling files | |
| files: | | |
| **/*.md | |
| config: .cspell.yml |