Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Owners Settings NOT supported in DevSensei add-codeowners action

Code Owners feature

Why not supported / Alternative?

CODEOWNERS.toplevel.create_pull_request_comment

May be added later

CODEOWNERS.toplevel.subdirectory_override

Obsolete with includes

NOTE

To replicate the previous behavior of the sub-dir override feature with DevSensei workflows, you must:

...

Code Block
languageyaml
conditions:
- or:
    - destination=main
    - destination~=release/*
    - source~!=hotfix/*

Condition Attributes

Meaning

source

Source branch of pull request

destination

Destination branch of pull request

draft

Is it a draft pull request

Conditions Combination Operator

Meaning

and

All conditions must be fulfilled

or

At least one of the conditions must be fulfilled

Enlarges the table by opening it in a full screen dialogOpen

Conditions Attributes Operator

Meaning

~=

Glob match

~!=

Glob negative match

=

Equals

!=

Not equals

! or not

Negate a boolean attribute

Actions

add-codeowners

Adds Code Owners as reviewers to a pull request.

...