From: DaanDeMeyer Date: Sun, 13 Jul 2025 10:39:38 +0000 (+0200) Subject: workflows: Use hyphens in filenames instead of underscores X-Git-Tag: v258-rc1~68^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13a86b4d9ffbcf2f1300d35ce622513152078c38;p=thirdparty%2Fsystemd.git workflows: Use hyphens in filenames instead of underscores --- diff --git a/.github/workflows/build_test.sh b/.github/workflows/build-test.sh similarity index 100% rename from .github/workflows/build_test.sh rename to .github/workflows/build-test.sh diff --git a/.github/workflows/build_test.yml b/.github/workflows/build-test.yml similarity index 96% rename from .github/workflows/build_test.yml rename to .github/workflows/build-test.yml index fc96cd98c3c..54c396fce6b 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build-test.yml @@ -41,4 +41,4 @@ jobs: - name: Repository checkout uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Build check - run: .github/workflows/build_test.sh + run: .github/workflows/build-test.sh diff --git a/.github/workflows/cflite_pr.yml b/.github/workflows/cflite-pr.yml similarity index 100% rename from .github/workflows/cflite_pr.yml rename to .github/workflows/cflite-pr.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index ad3a80a14c1..dacc1b5b813 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -50,7 +50,7 @@ jobs: languages: ${{ matrix.language }} config-file: ./.github/codeql-config.yml - - run: sudo -E .github/workflows/unit_tests.sh SETUP + - run: sudo -E .github/workflows/unit-tests.sh SETUP - name: Autobuild uses: github/codeql-action/autobuild@181d5eefc20863364f96762470ba6f862bdef56b diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 66204069c44..b77a1a13909 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -25,6 +25,6 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # Reuse the setup phase of the unit test script to avoid code duplication - name: Install build dependencies - run: sudo -E .github/workflows/unit_tests.sh SETUP + run: sudo -E .github/workflows/unit-tests.sh SETUP - name: Build & upload the results run: tools/coverity.sh diff --git a/.github/workflows/development_freeze.yml b/.github/workflows/development-freeze.yml similarity index 100% rename from .github/workflows/development_freeze.yml rename to .github/workflows/development-freeze.yml diff --git a/.github/workflows/issue_labeler.yml b/.github/workflows/issue-labeler.yml similarity index 100% rename from .github/workflows/issue_labeler.yml rename to .github/workflows/issue-labeler.yml diff --git a/.github/workflows/make_release.yml b/.github/workflows/make-release.yml similarity index 100% rename from .github/workflows/make_release.yml rename to .github/workflows/make-release.yml diff --git a/.github/workflows/unit_tests.sh b/.github/workflows/unit-tests.sh similarity index 100% rename from .github/workflows/unit_tests.sh rename to .github/workflows/unit-tests.sh diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit-tests.yml similarity index 95% rename from .github/workflows/unit_tests.yml rename to .github/workflows/unit-tests.yml index a7b71a60dec..e92430274ea 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit-tests.yml @@ -44,6 +44,6 @@ jobs: sudo sed -i '/^XDG_/d' /etc/environment # Pass only specific env variables through sudo, to avoid having # the already existing XDG_* stuff on the "other side" - sudo --preserve-env=GITHUB_ACTIONS,CI .github/workflows/unit_tests.sh SETUP + sudo --preserve-env=GITHUB_ACTIONS,CI .github/workflows/unit-tests.sh SETUP - name: Build & test - run: sudo --preserve-env=GITHUB_ACTIONS,CI .github/workflows/unit_tests.sh RUN_${{ matrix.run_phase }} + run: sudo --preserve-env=GITHUB_ACTIONS,CI .github/workflows/unit-tests.sh RUN_${{ matrix.run_phase }}