Skip to content

adds tenant endpoint #6

adds tenant endpoint

adds tenant endpoint #6

Workflow file for this run

name: PR Title Linter
on:
push:
branches: [ "sfera-playground" ]
#on:
# pull_request:
# types: [opened, edited, reopened, unlocked]
permissions: read-all
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:

Check failure on line 17 in .github/workflows/pr-title-lint.yml

View workflow run for this annotation

GitHub Actions / PR Title Linter

Invalid workflow file

The workflow is not valid. .github/workflows/pr-title-lint.yml (Line: 17, Col: 14): Unexpected value ''
- name: Install commitlint
run: |
npm install conventional-changelog-conventionalcommits
npm install commitlint@latest
echo "module.exports = { extends: ['@commitlint/config-conventional'] };" > commitlint.config.js
- name: "Lint: Pull request title"
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: echo "test" | npx commitlint
- name: "Warning: Pull request title must match patterns defined in CONTRIBUTING.md in section Commit Message Guidelines!"
if: ${{ failure() }}
run: echo "Pull request title must match patterns defined in CONTRIBUTING.md in section Commit Message Guidelines!"