mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
name: Dependent Issues
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- closed
|
|
- reopened
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- closed
|
|
- reopened
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: z0al/dependent-issues@v1
|
|
env:
|
|
# (Required) The token to use to make API calls to GitHub.
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
# (Optional) The label to use to mark dependent issues
|
|
label: dependent
|
|
|
|
# (Optional) Enable checking for dependencies in issues.
|
|
# Enable by setting the value to "on". Default "off"
|
|
check_issues: off
|
|
|
|
# (Optional) Ignore dependabot PRs.
|
|
# Enable by setting the value to "on". Default "off"
|
|
ignore_dependabot: off
|
|
|
|
# (Optional) A comma-separated list of keywords. Default
|
|
# "depends on, blocked by"
|
|
keywords: depends on, blocked by
|
|
|
|
# (Optional) A custom comment body. It supports `{{ dependencies }}` token.
|
|
comment: >
|
|
This PR/issue depends on:
|
|
|
|
{{ dependencies }}
|
|
|
|
By **[Dependent Issues](https://github.com/z0al/dependent-issues)** (🤖). Happy coding!
|