Skip to content

chore(deps): update postgres docker tag to v17 #542

chore(deps): update postgres docker tag to v17

chore(deps): update postgres docker tag to v17 #542

Workflow file for this run

# SPDX-FileCopyrightText: 2023 Siemens AG
#
# SPDX-License-Identifier: Apache-2.0
#
# Author: Michael Adler <[email protected]>
---
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@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
with:
cache: "pip" # caching pip dependencies
- run: pip install commitizen
- name: Check commit messages
run: cz check --rev-range origin/${GITHUB_BASE_REF}..