github.com/jshiv/can-go@v0.2.1-0.20210224011015-069e90e90bdf/tools/semantic-release/.releaserc.yaml (about)

     1  plugins:
     2    - - "@semantic-release/commit-analyzer"
     3      - preset: "conventionalcommits"
     4        releaseRules:
     5          # Given Go v2+ conventions we disable major releases on
     6          # breaking changes and leave it up to the developer
     7          # to make major releases
     8          - breaking: true
     9            release: "minor"
    10    - "@semantic-release/release-notes-generator"
    11    - "@semantic-release/github"
    12  
    13  branches: ["master"]
    14  # github plugin is the only one running this step and we're not interested
    15  # in its updates to PR and issues
    16  success: false
    17  # github plugin is the only one running this step and we're not interested
    18  # the issues it creates due to failed releases
    19  fail: false