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
name: Return the release notes extracted from the PR body
2
+
3
+
#
4
+
# Returns the release notes from the content of a pull request linked to a release branch. It expects the branch name to be in the format release/vX.Y.Z, release/X.Y.Z, release/vX.Y.Z-beta.N. etc.
Copy file name to clipboardexpand all lines: .github/workflows/publish.yml
+48-3
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,21 @@
1
1
name: Publish Release
2
2
3
3
on:
4
-
workflow_dispatch:
5
-
release:
4
+
pull_request:
6
5
types:
7
-
- published
6
+
- closed
7
+
workflow_dispatch:
8
+
9
+
### TODO: Replace instances of './.github/actions/' with reference to the `dx-sdk-actions` repo is made public and this file is transferred over
10
+
### TODO: Also remove `get-prerelease`, `get-version`, `release-create`, `tag-create` and `tag-exists` actions from this repo's .github/actions folder once the repo is public.
8
11
9
12
permissions:
10
13
contents: read
11
14
id-token: write # Required for trusted publishing to PyPI
0 commit comments