mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-20 18:00:35 +00:00
Use similar yamllint configuration as other Submariner repos. Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
40 lines
871 B
YAML
40 lines
871 B
YAML
---
|
|
name: PR Dependencies
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- closed
|
|
- reopened
|
|
- synchronize
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- closed
|
|
- reopened
|
|
- synchronize
|
|
schedule:
|
|
- cron: '0 0/6 * * *' # every 6 hours
|
|
|
|
jobs:
|
|
check:
|
|
name: Check Dependencies
|
|
if: github.repository_owner == 'submariner-io'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: z0al/dependent-issues@70a1b2d4ee1cdc743af33498bd0204123953a887
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
# The label to use to mark dependent issues
|
|
label: dependent
|
|
|
|
# Enable checking for dependencies in issues.
|
|
check_issues: on
|
|
|
|
# A comma-separated list of keywords to mark dependency.
|
|
keywords: depends on, Depends on
|