Unverified Commit 4efae7be authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

Merge pull request #331437 from adamcstephens/workflow-names

workflows/*: ensure jobs have names
parents 2ca45ae3 15e9fcd9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ permissions:

jobs:
  tests:
    name: basic-eval-checks
    runs-on: ubuntu-latest
    # we don't limit this action to only NixOS repo since the checks are cheap and useful developer feedback
    steps:
+1 −0
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@ permissions: {}

jobs:
  check:
    name: pkgs-by-name-check
    # This needs to be x86_64-linux, because we depend on the tooling being pre-built in the GitHub releases
    runs-on: ubuntu-latest
    # This should take 1 minute at most, but let's be generous.
+1 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@ permissions: {}

jobs:
  check:
    name: cherry-pick-check
    runs-on: ubuntu-latest
    if: github.repository_owner == 'NixOS'
    steps:
+1 −0
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@ permissions:

jobs:
  nixos:
    name: maintainer-list-check
    runs-on: ubuntu-latest
    if: github.repository_owner == 'NixOS'
    steps:
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@ permissions:

jobs:
  nixos:
    name: nixfmt-check
    runs-on: ubuntu-latest
    if: "!contains(github.event.pull_request.title, '[skip treewide]')"
    steps:
Loading