Skip to content

chore: update server-secrets #27

chore: update server-secrets

chore: update server-secrets #27

Workflow file for this run

name: PR labeler
on:
pull_request:
types:
- opened
jobs:
add_label:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: add โœจ feat label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'feat:') }}
with:
labels: โœจ feat
- name: add ๐Ÿž fix label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'fix:') }}
with:
labels: ๐Ÿž fix
- name: add ๐Ÿ”จ refactor label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'refactor:') }}
with:
labels: ๐Ÿ”จ refactor
- name: add โš™๏ธ chore label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'chore:') }}
with:
labels: โš™๏ธ chore
- name: add ๐Ÿงช๏ธ test label
uses: actions-ecosystem/action-add-labels@v1
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:') }}
with:
labels: ๐Ÿ“ docs