Versions Compared

Key

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

We released DevSensei | Code Owners for Bitbucket 8.2 on (TODO: REAL DATE) 🎉

Download on the Atlassian Marketplace for Data Center

...

Change to When add-codeowners Action Runs

Users Due to a change in semantics, users who previously migrated from CODEOWNERS to devsensei.yaml (all versions since v7.0) should add a condition to filter on non-draft PR, and add retriggers for destination and source-head-sha. This ensures that add-codeowners action will run on each destination branch rescope, commit push, or when the PR is no longer draft.

...

Code Block
languageyaml
workflows:
  - # rest as before
    conditions:
      - "!draft" # additional condition (keep previous ones)# some existing condition
      - "!draft"
    retrigger-on:
      - destination
      - source-head-sha

...