Skip to content

Commit

Permalink
rename checks and add documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
kinkie committed Oct 23, 2024
1 parent 49e8f3b commit 9ea8363
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
name: PR commit checks and PR target branch commit checks
name: PR commit
# These are fast-react checks that are executed
# whenever a PR is created or updated. These
# are meant to quickly and cheaply identify issues with
# the code as presented, leaving more expensive
# multiplatform checks to the "staged commit" phase


on:
push:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/staged.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
name: Staged commit checks
name: Staged commit
# This is the full suite of tests which is run on
# a staged commit, just prior to merging into the
# main tree.
# This is meant to be the most comprehensive suite of
# tests; they are expensive and slow to run and
# therefore we want to limit our reliance on them.
#
# The number of these tests needs to be kept
# in sync with Anubis configuration

on:
push:
Expand Down

0 comments on commit 9ea8363

Please sign in to comment.