File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }}
Original file line number Diff line number Diff line change 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'
You can’t perform that action at this time.
0 commit comments