mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-20 22:40:34 +00:00
Bumps [z0al/dependent-issues](https://github.com/z0al/dependent-issues) from 1.5.1 to 1.5.2. - [Release notes](https://github.com/z0al/dependent-issues/releases) - [Commits](https://github.com/z0al/dependent-issues/compare/0fae07162bc9e0d8e116a133bd03686eed6efa21...950226e7ca8fc43dc209a7febf67c655af3bdb43) --- updated-dependencies: - dependency-name: z0al/dependent-issues dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
870 B
YAML
40 lines
870 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@950226e7ca8fc43dc209a7febf67c655af3bdb43
|
|
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
|