✅ Added check for impl Chunk
trait at compile time
#1810
Workflow file for this run
This file contains 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: Labeler | |
on: [pull_request] | |
jobs: | |
label: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/labeler@v5 | |
- uses: ./.github/actions/label_by_message | |
with: | |
pr_number: ${{ github.event.pull_request.number }} | |
message_contains: ':boom:' | |
label_name: 'break' |