Skip to content

Commit 8c5bb9a

Browse files
authored
ci: add fastlane metadata validation and update release trigger (FossifyOrg#427)
* ci: auto trigger release pull requests when on changelog update * chore: add code owners * ci: add fastlane metadata validation
1 parent 99d2c74 commit 8c5bb9a

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ updates:
2222
prefix: "chore"
2323
prefix-development: "chore"
2424
include: "scope"
25-
assignees:
26-
- "naveensingh"
2725

2826
- package-ecosystem: "gradle"
2927
directory: "/"
@@ -37,8 +35,6 @@ updates:
3735
prefix: "chore"
3836
prefix-development: "chore"
3937
include: "scope"
40-
assignees:
41-
- "naveensingh"
4238

4339
- package-ecosystem: "github-actions"
4440
directory: "/"
@@ -48,5 +44,3 @@ updates:
4844
prefix: "chore"
4945
prefix-development: "chore"
5046
include: "scope"
51-
assignees:
52-
- "naveensingh"

.github/workflows/prepare-release-pr.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
repository_dispatch:
55
types: [prepare-release]
66
workflow_dispatch:
7+
push:
8+
branches: [main]
9+
paths:
10+
- "CHANGELOG.md"
711

812
jobs:
913
call-release-pr:
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Fastlane metadata validation
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths:
7+
- "fastlane/**"
8+
pull_request:
9+
branches: [main]
10+
paths:
11+
- "fastlane/**"
12+
13+
jobs:
14+
validate:
15+
uses: FossifyOrg/.github/.github/workflows/validate-fastlane-metadata.yml@main

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @naveensingh

0 commit comments

Comments
 (0)