Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ericphanson committed Jun 12, 2024
1 parent e604c94 commit 838876c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function guidelines_to_markdown_output(guidelines_function::Function)
use_distance_check = false,
package_author_approved = false,
)
filter!(x -> x[1] != :update_status, guidelines)
filter!(x -> !(x[1] isa Symbol), guidelines)
filter!(x -> !(x[1].docs isa Nothing), guidelines)
docs = [rstrip(x[1].docs) for x in guidelines]
output_string = join(string.(collect(1:length(docs)), Ref(". "), docs), "\n")
Expand Down Expand Up @@ -55,7 +55,7 @@ function guidelines_to_markdown_output(guidelines_function::Function)
use_distance_check = false,
package_author_approved = false,
)
filter!(x -> x[1] != :update_status, guidelines)
filter!(x -> !(x[1] isa Symbol), guidelines)
filter!(x -> !(x[1].docs isa Nothing), guidelines)
docs = [rstrip(x[1].docs) for x in guidelines]
output_string = join(string.(collect(1:length(docs)), Ref(". "), docs), "\n")
Expand Down Expand Up @@ -139,4 +139,4 @@ Specifically, these labels are:
* `Override AutoMerge: package author approved`
* This label can be manually applied, but typically is applied by a separate Github Actions workflow which monitors the PR for comments by the package author, and applies this label if they write `[merge approved]`.
* This label currently only skips the "sequential version number" check in new versions. In the future, the author-approval mechanism may be used for other checks (on both "new version" registrations and also "new package" registrations).
* When AutoMerge fails a check that can be skipped by author-approval, it will mention so in the comment, and direct authors to comment `[merge approved]` if they want to skip the check.
* When AutoMerge fails a check that can be skipped by author-approval, it will mention so in the comment, and direct authors to comment `[merge approved]` if they want to skip the check.

0 comments on commit 838876c

Please sign in to comment.