From 86a0ae295a4874388ca38391a4e602320d07a482 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Mon, 22 Dec 2025 12:38:13 +0100 Subject: [PATCH] .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 Signed-off-by: artist --- .github/workflows/build-xserver.yml | 13 +++++++++++++ .github/workflows/pr-signoff-check.yml | 15 --------------- 2 files changed, 13 insertions(+), 15 deletions(-) delete mode 100644 .github/workflows/pr-signoff-check.yml diff --git a/.github/workflows/build-xserver.yml b/.github/workflows/build-xserver.yml index 7d39fbdece..d1a9b3544d 100644 --- a/.github/workflows/build-xserver.yml +++ b/.github/workflows/build-xserver.yml @@ -323,6 +323,18 @@ jobs: - run: | 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: name: Release pushed tag runs-on: ubuntu-latest @@ -336,6 +348,7 @@ jobs: - xserver-build-dragonflybsd - xserver-build-netbsd - xserver-build-cygwin + - check-sign-off steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/pr-signoff-check.yml b/.github/workflows/pr-signoff-check.yml deleted file mode 100644 index 3523d9a1e8..0000000000 --- a/.github/workflows/pr-signoff-check.yml +++ /dev/null @@ -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 }}