Skip to content

Test/duplicate pr new #14

Test/duplicate pr new

Test/duplicate pr new #14

Workflow file for this run

name: Duplicate Payload Check
on:
pull_request_target:
types: [opened, synchronize, reopened]
permissions:
contents: read
pull-requests: read
jobs:
duplicate-check:
name: Duplicate Payload Check
runs-on: ubuntu-latest
steps:
- name: Checkout base branch
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.base.sha }}
fetch-depth: 1
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Check for duplicate payload/content entries
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: python "${{ github.workspace }}/scripts/check_duplicates.py"