Skip to content

Dependabot

Dependabot #542

Workflow file for this run

##################################################################################
#
# Lombok PHP - Write less code!
#
# @author Marcin Orlowski <mail (#) marcinOrlowski (.) com>
# @copyright 2022 Marcin Orlowski
# @license https://opensource.org/licenses/LGPL-3.0 LGPL-3.0
# @link https://github.com/MarcinOrlowski/lombok-php
#
# Github Action that looks for "DEPENDS_ON <ID>" and "BLOCKED_BY <ID>"
# in PR description and checks state of referenced PRs ensure these
# are merged first.
#
##################################################################################
name: Dependabot
on:
issues:
types:
- opened
- edited
- reopened
pull_request_target:
types:
- opened
- edited
- reopened
# Makes sure we always add status check for PRs. Useful only if
# this action is required to pass before merging. Can be removed
# otherwise.
- synchronize
# Schedule a daily check. Useful if you reference cross-repository
# issues or pull requests. Can be removed otherwise.
schedule:
# m h dom mon dow
- cron: '0 0 * * *'
jobs:
check:
runs-on: ubuntu-latest
steps:
# https://github.com/marketplace/actions/dependent-issues
- uses: z0al/dependent-issues@v1
env:
# (Required) The token to use to make API calls to GitHub.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# (Optional) The token to use to make API calls to GitHub for remote repos.
# GITHUB_READ_TOKEN: ${{ secrets.GITHUB_READ_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) A comma-separated list of keywords.
keywords: DEPENDS_ON, BLOCKED_BY