fix: only display NutritionCalculator component on product pages #1832
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: '📋 Semantic Pull Requests' | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| main: | |
| name: Validate Pull Request title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| # first type as the one from https://github.com/commitizen/conventional-commit-types/blob/master/index.json | |
| # l10n (localization) is for translations updates | |
| # taxonomy is for taxonomy changes | |
| types: | | |
| feat | |
| fix | |
| docs | |
| style | |
| refactor | |
| test | |
| build | |
| ci | |
| chore | |
| revert | |
| l10n | |
| taxonomy |