Skip to content

Commit 6605a36

Browse files
authored
Merge branch 'main' into unfuck_polling_plan
2 parents 20c3a2f + 5c9b8e6 commit 6605a36

File tree

3 files changed

+50
-7
lines changed

3 files changed

+50
-7
lines changed

.github/pull_request_template.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
### Description of work
2+
3+
*Add your own description here*
4+
5+
### Ticket
6+
7+
*Link to Ticket*
8+
9+
### Labels
10+
11+
*Add appropriate label(s) to this PR*
12+
13+
- 'bluesky-Semver-Major' - Breaking Change
14+
- 'bluesky-Semver-Minor' - New feature
15+
- 'bluesky-bug' - Bug fix
16+
- 'bluesky-documentation' - Document Changes
17+
- 'bluesky-ignore-for-release' - Do not show in the release notes
18+
19+
**Labels can be found of the right-hand sidebar of this PR once created**
20+
21+
### Acceptance criteria
22+
23+
*List the acceptance criteria for the PR. The aim is provide information to help the reviewer*
24+
25+
### Documentation
26+
*Highlight and provide a link to any additions or changes to the documentation, if applicable. The aim is provide information to help the reviewer*

.github/release.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- ignore-for-release
5+
authors:
6+
- octocat
7+
categories:
8+
- title: Breaking Changes
9+
labels:
10+
- Semver-Major
11+
- breaking-change
12+
- title: New Features
13+
labels:
14+
- Semver-Minor
15+
- title: Bug Fixes
16+
labels:
17+
- bug
18+
- title: Other Changes
19+
labels:
20+
- documentation
21+
- "*"

.github/workflows/release.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,9 @@ jobs:
5555
and upload them to GitHub Release
5656
needs: [lint-and-test, build, publish-to-pypi]
5757
runs-on: ubuntu-latest
58-
5958
permissions:
6059
contents: write # IMPORTANT: mandatory for making GitHub Releases
6160
id-token: write # IMPORTANT: mandatory for sigstore
62-
6361
steps:
6462
- name: Download all the dists
6563
uses: actions/download-artifact@v4
@@ -73,13 +71,11 @@ jobs:
7371
./dist/*.tar.gz
7472
./dist/*.whl
7573
- name: Create GitHub Release
74+
uses: softprops/action-gh-release@v2
75+
with:
76+
generate_release_notes: true
7677
env:
7778
GITHUB_TOKEN: ${{ github.token }}
78-
run: >-
79-
gh release create
80-
'${{ github.ref_name }}'
81-
--repo '${{ github.repository }}'
82-
--notes ""
8379
- name: Upload artifact signatures to GitHub Release
8480
env:
8581
GITHUB_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)