build(deps): bump actions/setup-dotnet from 5.3.0 to 6.0.0 #1552
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: Check branch conformity | |
| on: | |
| pull_request: | |
| types: ["opened", "labeled", "unlabeled", "reopened", "synchronize"] | |
| jobs: | |
| prevent-fixup-commits: | |
| runs-on: ubuntu-latest | |
| env: | |
| target: debian-bookworm | |
| distro: debian | |
| version: bookworm | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: prevent fixup commits | |
| run: | | |
| git fetch origin | |
| git status | |
| git log --pretty=format:%s origin/main..HEAD | grep -ie '^fixup\|^wip' && exit 1 || true | |
| check-changelog: | |
| runs-on: ubuntu-latest | |
| name: Ensure CHANGELOG.md is populated for user-visible changes | |
| steps: | |
| # Pin the GitHub action to a specific commit that we have audited and know | |
| # how it works. | |
| - uses: tarides/changelog-check-action@8f47e0becbfa549e4c82a3f562aa6f90d2c2ee8c | |
| with: | |
| changelog: CHANGELOG.md |