Skip to content

chore(deps): Bump braces from 3.0.2 to 3.0.3 in /hugo #431

chore(deps): Bump braces from 3.0.2 to 3.0.3 in /hugo

chore(deps): Bump braces from 3.0.2 to 3.0.3 in /hugo #431

Workflow file for this run

# SPDX-FileCopyrightText: 2023 Siemens AG
#
# SPDX-License-Identifier: Apache-2.0
#
# Author: Michael Adler <michael.adler@siemens.com>
---
name: PR checks
on:
pull_request:
types:
- opened
- synchronize
permissions:
contents: read
# needed to comment on the PR
pull-requests: write
jobs:
check-sign-off:
name: Write comment if commits are not signed-off
env:
FORCE_COLOR: 1
runs-on: ubuntu-latest
steps:
- uses: live627/check-pr-signoff-action@990e5cc2aa4058b4012f989c9c9e689734e52c54 # v1
check-conventional-commit:
name: Check commit messages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
ref: "${{ github.event.pull_request.head.ref }}"
repository: "${{ github.event.pull_request.head.repo.full_name }}"
fetch-depth: 0
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5
with:
cache: "pip" # caching pip dependencies
- run: pip install commitizen
- name: Check commit messages
run: cz check --rev-range origin/${GITHUB_BASE_REF}..