You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 18, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: .github/workflows/prepare-release.yml
+12-4Lines changed: 12 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,9 @@ name: "Prepare Release"
2
2
3
3
on:
4
4
workflow_dispatch:
5
+
schedule:
6
+
- cron: '0 12 * * 6'
7
+
- cron: '0 12 * * 3'
5
8
6
9
jobs:
7
10
deploy:
@@ -54,13 +57,18 @@ jobs:
54
57
- name: Build
55
58
run: npm run vscode:prepublish
56
59
working-directory: pnp-powershell-extension
57
-
60
+
58
61
- name: Create Pull Request
59
62
uses: peter-evans/create-pull-request@v6
60
63
with:
61
64
path: pnp-powershell-extension
62
-
commit-message: prepare release
65
+
commit-message: Release
63
66
branch: prepare-release
64
-
title: Prepare Release
65
-
body: Prepare Release
67
+
title: Release
68
+
body: |
69
+
Hi, this is auto generated release. In order to release the extension, please follow the instructions below:
70
+
71
+
- review, approve and merge to `main` branch
72
+
- create a new release with new tag that starts from `v*` prefix and number matches the extension version number from project.json. For example: `v1.0.0`
73
+
- wait for the release to be published to the marketplace
0 commit comments