mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-06-15 08:03:56 +00:00
ci: add required checks jobs
This is a hack to make it easier for our GitHub branching rules to require a single check to pass before merging. This lets us describe the required checks in code rather than via the GH UI.
This commit is contained in:
9
.github/workflows/nix.yml
vendored
9
.github/workflows/nix.yml
vendored
@@ -1,6 +1,15 @@
|
||||
on: [push, pull_request]
|
||||
name: Nix
|
||||
jobs:
|
||||
required:
|
||||
name: Required Checks
|
||||
runs-on: namespace-profile-ghostty-sm
|
||||
needs:
|
||||
- check-zig-cache-hash
|
||||
steps:
|
||||
- name: Noop
|
||||
run: echo "Required Checks Met"
|
||||
|
||||
check-zig-cache-hash:
|
||||
if: github.repository == 'ghostty-org/ghostty'
|
||||
runs-on: namespace-profile-ghostty-sm
|
||||
|
||||
Reference in New Issue
Block a user