shithub: opus

Download patch

ref: e19e12f162b6a7db483a1121b01253098f60329d
parent: 447934a8ca27ef5a576cbf5ac48656e8a076cf8d
author: Ralph Giles <giles@thaumas.net>
date: Thu Apr 17 11:41:30 EDT 2025

github actions: check whitespace against the main branch

This check was comparing with the opus-ng branch, which does show
some newer files with trailing whitespace, but for pull requests
ends up showing issues from unrelated code. Instead, compare against
the current development branch for more specific feedback.

Signed-off-by: Jean-Marc Valin <jeanmarcv@google.com>

--- a/.github/workflows/repository.yml
+++ b/.github/workflows/repository.yml
@@ -12,4 +12,4 @@
           fetch-depth: 0
       - name: Check Whitespaces
         run: |
-          git diff-tree --check origin/opus-ng HEAD
+          git diff-tree --check origin/main HEAD
--