File tree Expand file tree Collapse file tree 4 files changed +39
-7
lines changed Expand file tree Collapse file tree 4 files changed +39
-7
lines changed Original file line number Diff line number Diff line change 59
59
id : changelog
60
60
uses : mikepenz/release-changelog-builder-action@v4
61
61
with :
62
- configuration : " .github/workflows/changelog-config.json"
62
+ configuration : " .github/workflows/configs/ changelog-config.json"
63
63
# Listing PRs from the last tag to the HEAD commit
64
64
toTag : ${{ steps.head.outputs.sha }}
65
65
token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -58,10 +58,10 @@ jobs:
58
58
id : changelog
59
59
uses : mikepenz/release-changelog-builder-action@v4
60
60
with :
61
- configuration : " .github/workflows/changelog-config.json"
61
+ configuration : " .github/workflows/configs/ changelog-config.json"
62
62
# Listing PRs from the last tag to the HEAD commit
63
- toTag : $
64
- token : $
63
+ toTag : ${{ steps.head.outputs.sha }}
64
+ token : ${{ secrets.GITHUB_TOKEN }}
65
65
66
66
- name : Deploy Android Staging to Firebase
67
67
uses : wzieba/Firebase-Distribution-Github-Action@v1.5.0
Original file line number Diff line number Diff line change
1
+ {
2
+ "categories" : [
3
+ {
4
+ "title" : " ## ✨ Features" ,
5
+ "labels" : [
6
+ " type : feature"
7
+ ]
8
+ },
9
+ {
10
+ "title" : " ## 🐛 Bug fixes" ,
11
+ "labels" : [
12
+ " type : bug"
13
+ ]
14
+ },
15
+ {
16
+ "title" : " ## 🧹 Chores" ,
17
+ "labels" : [
18
+ " type : chore"
19
+ ]
20
+ },
21
+ {
22
+ "title" : " ## Others" ,
23
+ "exclude_labels" : [
24
+ " type : feature" ,
25
+ " type : bug" ,
26
+ " type : chore" ,
27
+ " type : release"
28
+ ]
29
+ }
30
+ ],
31
+ "max_pull_requests" : 200
32
+ }
Original file line number Diff line number Diff line change @@ -61,10 +61,10 @@ jobs:
61
61
id : changelog
62
62
uses : mikepenz/release-changelog-builder-action@v4
63
63
with :
64
- configuration : " .github/workflows/changelog-config.json"
64
+ configuration : " .github/workflows/configs/ changelog-config.json"
65
65
# Listing PRs from the last tag to the HEAD commit
66
- toTag : $
67
- token : $
66
+ toTag : ${{ steps.head.outputs.sha }}
67
+ token : ${{ secrets.GITHUB_TOKEN }}
68
68
69
69
- name : Run code generator
70
70
run : flutter packages pub run build_runner build --delete-conflicting-outputs
You can’t perform that action at this time.
0 commit comments