Skip to content

Commit 1c16220

Browse files
committed
feat!: commit version bumps by default
1 parent 9efa4db commit 1c16220

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The action is implemented in TypeScript with the official GitHub Actions toolkit
1414
- `feat:` -> `minor`
1515
- everything else -> `patch`
1616
- Probes `tessl tile publish --dry-run` and keeps incrementing patch versions until Tessl accepts a free version
17-
- Optionally commits published `tile.json` version bumps back to the current branch with `github-actions[bot]` and a skip-CI commit message
17+
- Commits published `tile.json` version bumps back to the current branch by default with `github-actions[bot]` and a skip-CI commit message
1818

1919
## Requirements
2020

@@ -51,10 +51,9 @@ jobs:
5151
token: ${{ secrets.TESSL_TOKEN }}
5252

5353
- name: Publish changed tiles
54-
uses: uinaf/tessl-publish-action@v1.1.1
54+
uses: uinaf/tessl-publish-action@v1.2.0
5555
with:
5656
review-threshold: "90"
57-
commit-version-bumps: "true"
5857
```
5958
6059
## Inputs
@@ -66,7 +65,7 @@ jobs:
6665
| `review-threshold` | `90` | Threshold passed to `tessl skill review --threshold` |
6766
| `dry-run-max-attempts` | `50` | Max version attempts per tile before giving up |
6867
| `publish-all` | `false` | Force publishing all tiles regardless of event diff |
69-
| `commit-version-bumps` | `false` | Commit published `tile.json` version bumps back to the branch |
68+
| `commit-version-bumps` | `true` | Commit published `tile.json` version bumps back to the branch |
7069
| `version-bump-commit-message` | `chore: sync published tile versions [skip ci]` | Commit message used for the bot-authored version bump sync commit |
7170

7271
## Outputs

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ inputs:
2424
commit-version-bumps:
2525
description: Commit published tile.json version bumps back to the current branch
2626
required: false
27-
default: "false"
27+
default: "true"
2828
version-bump-commit-message:
2929
description: Commit message to use when pushing published tile.json version bumps
3030
required: false

0 commit comments

Comments
 (0)