2024-09-05 07:32:31 +02:00
|
|
|
# SPDX-FileCopyrightText: 2024 Christina Sørensen
|
2024-03-15 09:55:00 +01:00
|
|
|
#
|
2024-09-05 07:32:31 +02:00
|
|
|
# SPDX-License-Identifier: EUPL-1.2
|
2024-03-15 09:55:00 +01:00
|
|
|
|
2024-09-07 12:07:44 +02:00
|
|
|
name: conventional commits
|
2024-03-15 09:55:00 +01:00
|
|
|
on:
|
|
|
|
push:
|
2024-09-05 07:32:31 +02:00
|
|
|
branches: [main]
|
2024-03-15 09:55:00 +01:00
|
|
|
pull_request:
|
2024-09-05 07:32:31 +02:00
|
|
|
branches: [main]
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
|
|
|
|
cancel-in-progress: true
|
2024-03-15 09:55:00 +01:00
|
|
|
jobs:
|
2024-09-07 12:07:44 +02:00
|
|
|
check:
|
2024-09-07 12:04:15 +02:00
|
|
|
name: conventional commits
|
2024-09-05 18:40:34 +02:00
|
|
|
runs-on: native
|
2024-03-15 09:55:00 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2024-09-09 07:50:42 +02:00
|
|
|
- uses: actions/action-conventional-commits@v1.3.0
|