Browse Source

Merge branch '5.8.x' into 6.2.x

pull/15381/head
Marcus Hert Da Coregio 2 years ago
parent
commit
cd404aaf04
  1. 8
      .github/workflows/mark-duplicate-dependabot-prs.yml

8
.github/workflows/mark-duplicate-dependabot-prs.yml

@ -5,6 +5,14 @@ on: @@ -5,6 +5,14 @@ on:
types: [closed]
jobs:
debug:
runs-on: ubuntu-latest
steps:
- name: Debug Event Payload
run: |
echo "Merged: ${{ github.event.pull_request.merged }}"
echo "User Login: ${{ github.event.pull_request.user.login }}"
check_duplicate_prs:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == 'true' && github.event.pull_request.user.login == 'dependabot[bot]'

Loading…
Cancel
Save