Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/pr-clean-old-drafts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@ name: PR cleanup

on:
schedule:
- cron: "0 7 * * 1" # every Monday 09:00 CEST (UTC+2)
- cron: "0 7 * * 1" # every Monday 07:00 UTC (08:00 CET / 09:00 CEST)
workflow_dispatch:


permissions:
contents: write
pull-requests: write
issues: write

jobs:
pr-checklist:
uses: GetStream/android-ci-actions/.github/workflows/pr-clean-stale.yaml@main
pr-clean-stale:
uses: GetStream/stream-build-conventions-android/.github/workflows/pr-clean-stale.yaml@v0.6.0
secrets: inherit
9 changes: 6 additions & 3 deletions .github/workflows/pr-quality.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
# .github/workflows/pr-quality-check.yml (caller)
name: PR checklist

on:
pull_request:
types: [opened, edited, synchronize, labeled, unlabeled, reopened]
types: [ opened, edited, synchronize, labeled, unlabeled, reopened ]

permissions:
contents: read
pull-requests: write
issues: write

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
pr-checklist:
uses: GetStream/android-ci-actions/.github/workflows/pr-quality.yml@main
uses: GetStream/stream-build-conventions-android/.github/workflows/pr-quality.yml@v0.6.0
secrets: inherit
Loading