Skip to content

Commit 37246bb

Browse files
authored
chore: prepare 1.3.0 (#104)
## PR Type What kind of change does this PR introduce? <!-- Please check the one that applies to this PR using "x". --> - [x] Release <!-- Please set this as a title and change the version number If you don't know the version number, run on the main branch the release GitHub workflow with dryRun enabled chore: prepare x.y.z -->
2 parents ce4def4 + 323913f commit 37246bb

File tree

5 files changed

+59
-44
lines changed

5 files changed

+59
-44
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
## PR Checklist
2+
3+
Please check if your PR fulfills the following requirements:
4+
5+
<!--- [ ] Tests for the changes have been added (for bug fixes/features)-->
6+
7+
- [ ] Docs have been added/updated (for bug fixes/features)
8+
9+
## PR Type
10+
11+
What kind of change does this PR introduce?
12+
13+
<!-- Please check the one that applies to this PR using "x". -->
14+
15+
- [ ] Bugfix
16+
- [ ] Feature
17+
- [ ] Code style update (formatting, local variables)
18+
- [ ] Refactoring (no functional changes, no API changes)
19+
- [ ] Build related changes
20+
- [ ] CI-related changes
21+
- [ ] Documentation content changes
22+
- [ ] Other... Please describe:
23+
24+
## Issue Number
25+
26+
<!-- Bugs and features must be linked to an issue. -->
27+
28+
Issue Number: N/A
29+
30+
## Does this PR introduce a breaking change?
31+
32+
<!-- If this PR contains a breaking change, please describe the impact and migration path for existing applications below. -->
33+
34+
- [ ] Yes
35+
- [ ] No
36+
37+
## Other information
38+
39+
@coderabbitai summary
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## PR Type
2+
3+
What kind of change does this PR introduce?
4+
5+
<!-- Please check the one that applies to this PR using "x". -->
6+
7+
- [x] Release
8+
9+
<!--
10+
Please set this as a title and change the version number
11+
12+
If you don't know the version number, run on the main branch the release GitHub workflow with dryRun enabled
13+
14+
chore: prepare x.y.z
15+
-->

.github/pull_request_template.md

+3-38
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,4 @@
1-
## PR Checklist
1+
Please go to the `Preview` tab and select the appropriate sub-template:
22

3-
Please check if your PR fulfills the following requirements:
4-
5-
<!--- [ ] Tests for the changes have been added (for bug fixes/features)-->
6-
7-
- [ ] Docs have been added/updated (for bug fixes/features)
8-
9-
## PR Type
10-
11-
What kind of change does this PR introduce?
12-
13-
<!-- Please check the one that applies to this PR using "x". -->
14-
15-
- [ ] Bugfix
16-
- [ ] Feature
17-
- [ ] Code style update (formatting, local variables)
18-
- [ ] Refactoring (no functional changes, no API changes)
19-
- [ ] Build related changes
20-
- [ ] CI-related changes
21-
- [ ] Documentation content changes
22-
- [ ] Other... Please describe:
23-
24-
## Issue Number
25-
26-
<!-- Bugs and features must be linked to an issue. -->
27-
28-
Issue Number: N/A
29-
30-
## Does this PR introduce a breaking change?
31-
32-
<!-- If this PR contains a breaking change, please describe the impact and migration path for existing applications below. -->
33-
34-
- [ ] Yes
35-
- [ ] No
36-
37-
## Other information
38-
39-
@coderabbitai summary
3+
* [Default](?expand=1&template=default_request_template.md)
4+
* [Release](?expand=1&template=release_request_template.md)

.github/workflows/release.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111

1212
jobs:
1313
release:
14+
if: (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/release') || (github.event_name == 'workflow_dispatch' && github.event.inputs.dryRun == 'true' && github.ref == 'refs/heads/main')
1415
name: Release new version 🛠
1516
runs-on: ubuntu-latest
1617
permissions:
@@ -19,12 +20,6 @@ jobs:
1920
issues: write
2021
pull-requests: write
2122
steps:
22-
- name: Fail if branch is not release
23-
if: github.event_name == 'workflow_dispatch' && github.ref != 'refs/heads/release'
24-
run: |
25-
echo "This workflow should not be triggered with workflow_dispatch on a branch other than release"
26-
exit 1
27-
2823
- name: Check out the code 🗄
2924
uses: actions/checkout@v4
3025
with:

libs/flowbite-angular/project.json

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"npm": true,
4040
"changelog": true,
4141
"branches": [
42+
"main",
4243
"release",
4344
{
4445
"name": "beta",

0 commit comments

Comments
 (0)