Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ on:

jobs:
create-release:
# Opt-out marker. A merge whose commit message contains [no-release] is
# skipped entirely — no tag, no release, no bundle. Intended for the
# intermediate merges of a multi-PR feature arc, where every merge would
# otherwise mint a release nobody installs. Put the marker in the PR TITLE:
# GitHub's default merge commit is "Merge pull request #N from …" followed
# by the PR title, so the title is what lands in the message this reads.
# A release still needs its own PluginVersion bump — version-check is
# unaffected by this marker and continues to require one on every PR.
if: ${{ !contains(github.event.head_commit.message, '[no-release]') }}
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion indigo-matter.indigoPlugin/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<key>IwsApiVersion</key>
<string>1.0.0</string>
<key>PluginVersion</key>
<string>2026.8.0</string>
<string>2026.8.2</string>
<key>ServerApiVersion</key>
<string>3.6</string>
</dict>
Expand Down
Loading