Implement edit and delete feature for products #419
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: PR Validation | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
- labeled | |
- unlabeled | |
jobs: | |
pr-title-validation: | |
name: Pull Request Title Validation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Title validation | |
uses: YoNG-Zaii/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
linear_id_prefix: "SCSE" | |
linear_auth_type: "apiKey" | |
linear_auth_key: ${{ secrets.LINEAR_API_KEY }} | |
label_name: "bad PR title" | |
label_description: "PR title needs formatting" | |
label_color: "D4C5F9" |