ci: add fastlane metadata validation and update release trigger
* ci: auto trigger release pull requests when on changelog update * chore: add code owners * ci: add fastlane metadata validation
This commit is contained in:
parent
9668cfc56f
commit
7871efa832
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
@ -22,8 +22,6 @@ updates:
|
|||||||
prefix: "chore"
|
prefix: "chore"
|
||||||
prefix-development: "chore"
|
prefix-development: "chore"
|
||||||
include: "scope"
|
include: "scope"
|
||||||
assignees:
|
|
||||||
- "naveensingh"
|
|
||||||
|
|
||||||
- package-ecosystem: "gradle"
|
- package-ecosystem: "gradle"
|
||||||
directory: "/"
|
directory: "/"
|
||||||
@ -37,8 +35,6 @@ updates:
|
|||||||
prefix: "chore"
|
prefix: "chore"
|
||||||
prefix-development: "chore"
|
prefix-development: "chore"
|
||||||
include: "scope"
|
include: "scope"
|
||||||
assignees:
|
|
||||||
- "naveensingh"
|
|
||||||
|
|
||||||
- package-ecosystem: "github-actions"
|
- package-ecosystem: "github-actions"
|
||||||
directory: "/"
|
directory: "/"
|
||||||
@ -48,5 +44,3 @@ updates:
|
|||||||
prefix: "chore"
|
prefix: "chore"
|
||||||
prefix-development: "chore"
|
prefix-development: "chore"
|
||||||
include: "scope"
|
include: "scope"
|
||||||
assignees:
|
|
||||||
- "naveensingh"
|
|
||||||
|
4
.github/workflows/prepare-release-pr.yml
vendored
4
.github/workflows/prepare-release-pr.yml
vendored
@ -4,6 +4,10 @@ on:
|
|||||||
repository_dispatch:
|
repository_dispatch:
|
||||||
types: [prepare-release]
|
types: [prepare-release]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
paths:
|
||||||
|
- "CHANGELOG.md"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
call-release-pr:
|
call-release-pr:
|
||||||
|
15
.github/workflows/validate-fastlane-metadata.yml
vendored
Normal file
15
.github/workflows/validate-fastlane-metadata.yml
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
name: Fastlane metadata validation
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
paths:
|
||||||
|
- "fastlane/**"
|
||||||
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
|
paths:
|
||||||
|
- "fastlane/**"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
validate:
|
||||||
|
uses: FossifyOrg/.github/.github/workflows/validate-fastlane-metadata.yml@main
|
1
CODEOWNERS
Normal file
1
CODEOWNERS
Normal file
@ -0,0 +1 @@
|
|||||||
|
* @naveensingh
|
Loading…
x
Reference in New Issue
Block a user