diff --git a/.github/workflows/type-labeler.yml b/.github/workflows/type-labeler.yml index 7724aec9..6b2d7524 100644 --- a/.github/workflows/type-labeler.yml +++ b/.github/workflows/type-labeler.yml @@ -16,61 +16,61 @@ jobs: - name: add ✨ feature label uses: actions-ecosystem/action-add-labels@v1 - if: startsWith(github.event.pull_request.title, 'feat:') }} + if: startsWith(github.event.pull_request.title, 'feat:') with: labels: ✨ feature - name: add 🐛 bug-fix label uses: actions-ecosystem/action-add-labels@v1 - if: startsWith(github.event.pull_request.title, 'fix:') }} + if: startsWith(github.event.pull_request.title, 'fix:') with: labels: 🐛 bug-fix - name: add ♻️ refactor label uses: actions-ecosystem/action-add-labels@v1 - if: startsWith(github.event.pull_request.title, 'refactor:') }} + if: startsWith(github.event.pull_request.title, 'refactor:') with: labels: ♻️ refactor - name: add 🎨 style label uses: actions-ecosystem/action-add-labels@v1 - if: startsWith(github.event.pull_request.title, 'style:') }} + if: startsWith(github.event.pull_request.title, 'style:') with: labels: 🎨 style - name: add 🏗️ build label uses: actions-ecosystem/action-add-labels@v1 - if: startsWith(github.event.pull_request.title, 'chore:') }} + if: startsWith(github.event.pull_request.title, 'chore:') with: labels: 🏗️ build - name: add ✅ test label uses: actions-ecosystem/action-add-labels@v1 - if: startsWith(github.event.pull_request.title, 'test:') }} + if: startsWith(github.event.pull_request.title, 'test:') with: labels: ✅ test - name: add 📝 docs label uses: actions-ecosystem/action-add-labels@v1 - if: startsWith(github.event.pull_request.title, 'docs:') }} + if: startsWith(github.event.pull_request.title, 'docs:') with: labels: 📝 docs - name: add 👷 ci label uses: actions-ecosystem/action-add-labels@v1 - if: startsWith(github.event.pull_request.title, 'ci:') }} + if: startsWith(github.event.pull_request.title, 'ci:') with: labels: 👷 ci - name: add ⚡️ perf label uses: actions-ecosystem/action-add-labels@v1 - if: startsWith(github.event.pull_request.title, 'perf:') }} + if: startsWith(github.event.pull_request.title, 'perf:') with: labels: ⚡️ perf - name: add 🔖 release label uses: actions-ecosystem/action-add-labels@v1 - if: ${{ startsWith(github.event.pull_request.title, 'release:') }} + if: ${{ startsWith(github.event.pull_request.title, 'release:') with: labels: 🔖 release