chore(config): align default staleness to 500ms in dev and compose configs #1327
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: Assign Labels | |
| on: # yamllint disable-line rule:truthy | |
| pull_request_target: | |
| # default permissions as read only | |
| permissions: read-all | |
| jobs: | |
| assign-labels: | |
| permissions: | |
| pull-requests: write | |
| issues: write | |
| runs-on: ubuntu-latest | |
| name: Assign labels in Pull Request | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v7 | |
| - name: Execute assign labels | |
| uses: mauroalderete/action-assign-labels@v1 | |
| with: | |
| pull-request-number: ${{ github.event.pull_request.number }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| conventional-commits: | | |
| conventional-commits: | |
| - type: 'fix' | |
| nouns: ['fix'] | |
| labels: ['fix'] | |
| - type: 'feat' | |
| nouns: ['feat'] | |
| labels: ['feat'] | |
| - type: 'docs' | |
| nouns: ['docs'] | |
| labels: ['docs'] | |
| - type: 'chore' | |
| nouns: ['chore'] | |
| labels: ['chore'] | |
| - type: 'test' | |
| nouns: ['test'] | |
| labels: ['test'] | |
| - type: 'refactor' | |
| nouns: ['refactor'] | |
| labels: ['refactor'] | |
| - type: 'ci' | |
| nouns: ['ci'] | |
| labels: ['ci'] | |
| - type: 'perf' | |
| nouns: ['perf'] | |
| labels: ['perf'] | |
| - type: 'revert' | |
| nouns: ['revert'] | |
| labels: ['revert'] | |
| - type: 'breaking' | |
| nouns: ['!'] | |
| labels: ['breaking-change'] | |
| maintain-labels-not-matched: false | |
| apply-changes: true |