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
12 changes: 5 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,10 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx release-it --ci

- name: Create PR to sync main to develop
- name: Sync main to develop
if: github.ref == 'refs/heads/main'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh pr create --base develop --head main \
--title "chore: sync release from main [skip ci]" \
--body "Sync release commits from main to develop. [skip ci]" \
&& gh pr merge --merge || true
git fetch origin develop
git checkout develop
git merge main --strategy-option theirs -m "chore: sync release from main [skip ci]"
git push origin develop
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.2.8-beta.2](https://github.com/wireweave/markdown-plugin/compare/v1.2.8-beta.1...v1.2.8-beta.2) (2026-03-09)

## [1.2.8-beta.1](https://github.com/wireweave/markdown-plugin/compare/v1.2.8-beta.0...v1.2.8-beta.1) (2026-03-08)

## [1.2.8-beta.0](https://github.com/wireweave/markdown-plugin/compare/v1.2.7...v1.2.8-beta.0) (2026-03-07)

## [1.2.7](https://github.com/wireweave/markdown-plugin/compare/v1.2.7-beta.0...v1.2.7) (2026-03-07)

## [1.2.7-beta.0](https://github.com/wireweave/markdown-plugin/compare/v1.2.6...v1.2.7-beta.0) (2026-03-07)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wireweave/markdown-plugin",
"version": "1.2.7",
"version": "1.2.8-beta.2",
"description": "Markdown plugins for wireweave",
"type": "module",
"main": "dist/index.js",
Expand Down