Skip to content

Commit 865cf5e

Browse files
committed
TEMP: update release config to include development branch
1 parent a24ec81 commit 865cf5e

File tree

2 files changed

+16
-18
lines changed

2 files changed

+16
-18
lines changed

.github/workflows/compatibility.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
update-table:
1212
runs-on: ubuntu-latest
1313
needs: versioning
14-
if: ${{ needs.versioning.outputs.next_version != '' }}
14+
if: ${{ needs.versioning.outputs.next-version != '' }}
1515
steps:
1616
- name: Checkout source
1717
uses: actions/checkout@v4
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Python
2727
uses: actions/setup-python@v5
2828

29-
- run: python ./source/compatibility-table.py --source-version ${{ needs.versioning.outputs.next_version }} -d ./dependency -r ./source/README.md
29+
- run: python ./source/compatibility-table.py --source-version ${{ needs.versioning.outputs.next-version }} -d ./dependency -r ./source/README.md
3030

3131
- name: Commit changes
3232
working-directory: ./source

release.config.mjs

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
export default {
2-
"branches": ["main"],
3-
"plugins": [
4-
"@semantic-release/commit-analyzer",
5-
"@semantic-release/release-notes-generator",
2+
branches: ['main', 'docs/compatibility-table'],
3+
plugins: [
4+
'@semantic-release/commit-analyzer',
5+
'@semantic-release/release-notes-generator',
66
[
7-
"@semantic-release/github",
7+
'@semantic-release/github',
88
{
9-
"successComment": false,
10-
"failComment": false,
11-
"failTitle": false,
12-
"labels": false,
13-
"releasedLabels": false
14-
}
15-
]
16-
]
17-
}
18-
19-
9+
successComment: false,
10+
failComment: false,
11+
failTitle: false,
12+
labels: false,
13+
releasedLabels: false,
14+
},
15+
],
16+
],
17+
};

0 commit comments

Comments
 (0)