]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
workflows: Use hyphens in filenames instead of underscores
authorDaanDeMeyer <daan.j.demeyer@gmail.com>
Sun, 13 Jul 2025 10:39:38 +0000 (12:39 +0200)
committerDaanDeMeyer <daan.j.demeyer@gmail.com>
Sun, 13 Jul 2025 10:41:12 +0000 (12:41 +0200)
.github/workflows/build-test.sh [moved from .github/workflows/build_test.sh with 100% similarity]
.github/workflows/build-test.yml [moved from .github/workflows/build_test.yml with 96% similarity]
.github/workflows/cflite-pr.yml [moved from .github/workflows/cflite_pr.yml with 100% similarity]
.github/workflows/codeql.yml
.github/workflows/coverity.yml
.github/workflows/development-freeze.yml [moved from .github/workflows/development_freeze.yml with 100% similarity]
.github/workflows/issue-labeler.yml [moved from .github/workflows/issue_labeler.yml with 100% similarity]
.github/workflows/make-release.yml [moved from .github/workflows/make_release.yml with 100% similarity]
.github/workflows/unit-tests.sh [moved from .github/workflows/unit_tests.sh with 100% similarity]
.github/workflows/unit-tests.yml [moved from .github/workflows/unit_tests.yml with 95% similarity]

similarity index 96%
rename from .github/workflows/build_test.yml
rename to .github/workflows/build-test.yml
index fc96cd98c3cf9ffe8a1b0c572470dc226d298d69..54c396fce6b1826adb007fb2010c4339d1ce57bc 100644 (file)
@@ -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
index ad3a80a14c18eebe15238a62858a580829fb8fa7..dacc1b5b81330c0dd17e68b3006fa5701765a5ab 100644 (file)
@@ -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
index 66204069c44634102f185287934490dde0ab8822..b77a1a13909c7d63c285e3f4889e506d65c0f532 100644 (file)
@@ -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
similarity index 95%
rename from .github/workflows/unit_tests.yml
rename to .github/workflows/unit-tests.yml
index a7b71a60dec154802638c0153f1aa05fb8c31315..e92430274ea7dd4e8ab4542f5c563f59a9a70642 100644 (file)
@@ -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 }}