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:
Naveen Singh
2025-06-09 14:48:37 +05:30
committed by GitHub
parent fe67c4fb67
commit e30114565a
5 changed files with 20 additions and 8 deletions

View File

@@ -22,8 +22,6 @@ updates:
prefix: "chore"
prefix-development: "chore"
include: "scope"
assignees:
- "naveensingh"
- package-ecosystem: "gradle"
directory: "/"
@@ -37,8 +35,6 @@ updates:
prefix: "chore"
prefix-development: "chore"
include: "scope"
assignees:
- "naveensingh"
- package-ecosystem: "github-actions"
directory: "/"
@@ -48,5 +44,3 @@ updates:
prefix: "chore"
prefix-development: "chore"
include: "scope"
assignees:
- "naveensingh"

View File

@@ -33,8 +33,6 @@ jobs:
with:
token: ${{ steps.app-token.outputs.token }}
sign-commits: true
assignees: naveensingh
reviewers: naveensingh
branch: fossifybot/holidays
commit-message: "chore: update holidays"
title: "chore: update holidays"

View File

@@ -4,6 +4,10 @@ on:
repository_dispatch:
types: [prepare-release]
workflow_dispatch:
push:
branches: [main]
paths:
- "CHANGELOG.md"
jobs:
call-release-pr:

View 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
View File

@@ -0,0 +1 @@
* @naveensingh