chore: bump golang from 1.24 to 1.25 in /build/liqo-test in the docker-deps group #1007
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: Conventional Commit Labels | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| assign-labels: | |
| runs-on: ubuntu-latest | |
| name: Assign labels in pull request | |
| if: github.event.pull_request.merged == false | |
| steps: | |
| - name: Execute assign labels | |
| id: action-assign-labels | |
| uses: mauroalderete/action-assign-labels@v1 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| conventional-commits: | | |
| conventional-commits: | |
| - type: 'fix' | |
| nouns: ['fix'] | |
| labels: ['fix'] | |
| - type: 'feat' | |
| nouns: ['feat'] | |
| labels: ['feat'] | |
| - type: 'build' | |
| nouns: ['build'] | |
| labels: ['build'] | |
| - type: 'chore' | |
| nouns: ['chore'] | |
| labels: ['chore'] | |
| - type: 'ci' | |
| nouns: ['ci'] | |
| labels: ['ci'] | |
| - type: 'docs' | |
| nouns: ['docs'] | |
| labels: ['docs'] | |
| - type: 'style' | |
| nouns: ['style'] | |
| labels: ['style'] | |
| - type: 'refactor' | |
| nouns: ['refactor'] | |
| labels: ['refactor'] | |
| - type: 'perf' | |
| nouns: ['perf'] | |
| labels: ['perf'] | |
| - type: 'test' | |
| nouns: ['test'] | |
| labels: ['test'] | |