Skip to content

Commit e301145

Browse files
authored
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
1 parent fe67c4f commit e301145

5 files changed

Lines changed: 20 additions & 8 deletions

File tree

.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/holiday-generator.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ jobs:
3333
with:
3434
token: ${{ steps.app-token.outputs.token }}
3535
sign-commits: true
36-
assignees: naveensingh
37-
reviewers: naveensingh
3836
branch: fossifybot/holidays
3937
commit-message: "chore: update holidays"
4038
title: "chore: update holidays"

.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)