.github: move signed-off check into main xserver build workflow

Reduce the number of total workflows, so the list isn't so crowded.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Signed-off-by: artist <artist@artixlinux.org>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-12-22 12:38:13 +01:00
committed by artist
parent 32050edf76
commit 86a0ae295a
2 changed files with 13 additions and 15 deletions

View File

@@ -323,6 +323,18 @@ jobs:
- run: | - run: |
bash ./.github/scripts/Cygwin/build.sh bash ./.github/scripts/Cygwin/build.sh
check-sign-off:
name: Write comment if unsigned commits found
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
env:
FORCE_COLOR: 1
runs-on: ubuntu-latest
steps:
- uses: live627/check-pr-signoff-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
release: release:
name: Release pushed tag name: Release pushed tag
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -336,6 +348,7 @@ jobs:
- xserver-build-dragonflybsd - xserver-build-dragonflybsd
- xserver-build-netbsd - xserver-build-netbsd
- xserver-build-cygwin - xserver-build-cygwin
- check-sign-off
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4

View File

@@ -1,15 +0,0 @@
name: Check PR Sign-off
on: [pull_request]
jobs:
check-sign-off:
name: Write comment if unsigned commits found
env:
FORCE_COLOR: 1
runs-on: ubuntu-latest
steps:
- uses: live627/check-pr-signoff-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}