Skip to content

Commit a0cb67e

Browse files
committed
chore: improvements to dev xp (#947)
1 parent 818655a commit a0cb67e

File tree

6 files changed

+86
-1
lines changed

6 files changed

+86
-1
lines changed

.github/release-drafter.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name-template: Release v$NEXT_MINOR_VERSION 🌈
2+
tag-template: v$NEXT_MINOR_VERSION
3+
categories:
4+
- title: 🚀 Features
5+
label:
6+
- feature
7+
- feat
8+
- title: 🐛 Bug Fixes
9+
label: fix
10+
- title: 🧰 Maintenance
11+
label: chore
12+
- title: Dependencies and Libraries
13+
label:
14+
- dependencies
15+
- chore(deps)
16+
change-template: '- $TITLE (#$NUMBER) - @$AUTHOR'
17+
template: |-
18+
## Changes
19+
20+
$CHANGES
21+
22+
## Contributors
23+
24+
Thanks a lot to our contributors for making this release possible:
25+
$CONTRIBUTORS

.github/workflows/pull_request.yml

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
run: flutter analyze
2424

2525
android:
26+
name: Android Flutter Build
2627
needs: common
2728
runs-on: ubuntu-latest
2829
steps:
@@ -42,6 +43,7 @@ jobs:
4243
flutter build appbundle
4344
4445
ios:
46+
name: iOS Flutter Build
4547
needs: common
4648
runs-on: macos-latest
4749
steps:

.github/workflows/push.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ jobs:
6262
6363

6464
android:
65+
name: Android Flutter Build
6566
needs: common
6667
runs-on: ubuntu-latest
6768
steps:
@@ -182,6 +183,7 @@ jobs:
182183
fi
183184
184185
ios:
186+
name: iOS Flutter Build
185187
needs: common
186188
runs-on: macos-latest
187189
steps:
@@ -200,4 +202,18 @@ jobs:
200202
VERSION_NAME: ${{needs.common.outputs.VERSION_NAME}}
201203
VERSION_CODE: ${{needs.common.outputs.VERSION_CODE}}
202204
run: |
203-
flutter build ipa --no-codesign --build-name $VERSION_NAME --build-number $VERSION_CODE
205+
flutter build ipa --no-codesign --build-name $VERSION_NAME --build-number $VERSION_CODE
206+
207+
update-release:
208+
needs: [common, android, ios]
209+
runs-on: ubuntu-latest
210+
steps:
211+
- name: Run Release Drafter
212+
uses: release-drafter/release-drafter@v6
213+
env:
214+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
215+
with:
216+
version: ${{ needs.common.outputs.VERSION_NAME }}
217+
name: 'Release v${{ needs.common.outputs.VERSION_NAME }} 🌈'
218+
tag: 'v${{ needs.common.outputs.VERSION_CODE }}'
219+

.github/workflows/semantic_lint.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "Semantic Validation"
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
10+
permissions:
11+
pull-requests: write
12+
13+
jobs:
14+
main:
15+
name: Validate PR title
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: amannn/action-semantic-pull-request@v5
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
with:
22+
ignoreLabels: |
23+
chore(deps)

.vscode/extensions.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3+
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4+
5+
// List of extensions which should be recommended for users of this workspace.
6+
"recommendations": [
7+
"dart-code.flutter"
8+
],
9+
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
10+
"unwantedRecommendations": [
11+
12+
]
13+
}

.vscode/settings.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"[dart]": {
3+
"editor.defaultFormatter": "Dart-Code.dart-code",
4+
"editor.formatOnSave": true,
5+
}
6+
}

0 commit comments

Comments
 (0)