Skip to content

Commit 8e24ea5

Browse files
authored
chore(NODE-5347): add release workflow skeleton (#3715)
1 parent b6c85f4 commit 8e24ea5

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
on:
2+
# push:
3+
# branches: [ main, 4.x ]
4+
workflow_dispatch: {}
5+
6+
permissions:
7+
contents: write
8+
pull-requests: write
9+
10+
name: release
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: google-github-actions/release-please-action@v3
17+
with:
18+
release-type: node
19+
package-name: mongodb
20+
pull-request-title-pattern: "chore${scope}: release${component} ${version} [skip-ci]"
21+
# Publication steps would be dependent on the output of the above step:
22+
# steps.release.outputs.release_created

0 commit comments

Comments
 (0)