feat(storage): enable at-rest encryption on storage container #3766
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependent Issues | |
on: | |
issues: | |
types: | |
- opened | |
- edited | |
- reopened | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
# Schedule a daily check. Used in referencing cross-repository | |
# issues or pull requests | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
check: | |
permissions: | |
issues: write | |
pull-requests: write | |
statuses: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: z0al/dependent-issues@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
# (Optional) Enable checking for dependencies in issues. | |
# Enable by setting the value to "on". Default "off" | |
check_issues: off | |
keywords: depends on, blocked by, based on |