Bump the packages group with 2 updates #144
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: Pull Request checks | |
| permissions: | |
| actions: read | |
| pull-requests: write | |
| security-events: write | |
| contents: write | |
| checks: write | |
| issues: write | |
| on: | |
| pull_request: | |
| jobs: | |
| size-label: | |
| name: Set change size | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set label | |
| uses: "pascalgn/size-label-action@v0.5.7" | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| with: | |
| sizes: > | |
| { | |
| "1": "XS", | |
| "10": "S", | |
| "20": "M", | |
| "50": "L", | |
| "100": "XL" | |
| } | |
| pr-scope: | |
| name: Set PR scope | |
| runs-on: ubuntu-latest | |
| needs: [ size-label ] | |
| steps: | |
| - uses: actions/labeler@v7 | |
| name: Set label | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| check-style-rules: | |
| runs-on: ubuntu-latest | |
| name: Check Style rules | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Setup .NET Core SDK | |
| uses: actions/setup-dotnet@v6 | |
| - name: Style checks | |
| run: | | |
| dotnet tool restore | |
| dotnet fantomas ./ --check |