Skip to content

Commit ddd2931

Browse files
committed
feat(semantic-release): write summary by default
1 parent d0b39ae commit ddd2931

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ made (or not). Additional tokens like NPM_TOKEN can be passed via the environmen
647647
| Required | Name | Description | Example | Default |
648648
| -------- | ----------------------- | ------------------------------------------- | ----------------------------- | ------- |
649649
| Yes | `token` | GitHub Personal access token | `${{ secrets.GITHUB_TOKEN }}` | – |
650-
| No | `write-summary` | Write a summary to the GitHub action output | `true` | `false` |
650+
| No | `write-summary` | Write a summary to the GitHub action output | `false` | `true` |
651651
| No | `dry-run` | Run semantic release in dry-run mode | `true` | `false` |
652652
| No | `semantic-release-args` | Additional semantic release arguments | `--debug` | – |
653653
| No | `working-directory` | Directory to run semantic release in | `./packages/my-package` | – |
@@ -672,7 +672,7 @@ made (or not). Additional tokens like NPM_TOKEN can be passed via the environmen
672672
id: release
673673
with:
674674
token: ${{ secrets.GITHUB_TOKEN }}
675-
write-summary: true
675+
write-summary: false
676676
semantic-release-args: --branches=my-branch
677677
env:
678678
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

semantic-release/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
write-summary:
1010
description: 'Write a summary to the GitHub action output'
1111
required: false
12-
default: 'false'
12+
default: 'true'
1313

1414
dry-run:
1515
description: 'Run semantic release in dry-run mode'

0 commit comments

Comments
 (0)