-
-
Notifications
You must be signed in to change notification settings - Fork 761
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Match changelog format of other ReVanced repos (#1705)
- Loading branch information
1 parent
6d6fae1
commit d414a91
Showing
5 changed files
with
65 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,6 @@ on: | |
- "android/**" | ||
- "assets/**" | ||
- "lib/**" | ||
- ".releaserc.js" | ||
- "pubspec.yaml" | ||
|
||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
{ | ||
"branches": [ | ||
"main", | ||
{ | ||
"name": "dev", | ||
"prerelease": true | ||
} | ||
], | ||
"plugins": [ | ||
[ | ||
"@semantic-release/commit-analyzer", { | ||
"releaseRules": [ | ||
{ "type": "build", "scope": "Needs bump", "release": "patch" } | ||
] | ||
} | ||
], | ||
"@semantic-release/changelog", | ||
"@semantic-release/release-notes-generator", | ||
[ | ||
"@droidsolutions-oss/semantic-release-update-file", | ||
{ | ||
"files": [ | ||
{ | ||
"path": ["pubspec.yaml"], | ||
"type": "flutter", | ||
"branches": ["main", "dev"] | ||
} | ||
] | ||
} | ||
], | ||
[ | ||
"@semantic-release/exec", | ||
{ | ||
"prepareCmd": "flutter build apk" | ||
} | ||
], | ||
[ | ||
"@semantic-release/git", | ||
{ | ||
"assets": [ | ||
"pubspec.yaml" | ||
] | ||
} | ||
], | ||
[ | ||
"@semantic-release/github", | ||
{ | ||
"assets": [ | ||
{ | ||
"path": "build/app/outputs/apk/release/revanced-manager*.apk" | ||
} | ||
], | ||
"successComment": false | ||
} | ||
], | ||
[ | ||
"@saithodev/semantic-release-backmerge", | ||
{ | ||
"backmergeBranches": [{"from": "main", "to": "dev"}], | ||
"clearWorkspace": true | ||
} | ||
] | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters