| 1234567891011121314151617181920212223242526272829303132 |
- # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- # Exceptions. See /LICENSE for license information.
- # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- name: Dependent Issues
- on:
- issues:
- types:
- - opened
- - edited
- - reopened
- pull_request_target:
- types:
- - opened
- - edited
- - reopened
- - synchronize
- schedule:
- - cron: '0 0 * * *' # daily
- jobs:
- check:
- runs-on: ubuntu-latest
- steps:
- - uses: z0al/dependent-issues@v1
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- with:
- label: dependent
- check_issues: on
- keywords: depends on, blocked by
|