forked from strapi/strapi
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (27 loc) · 769 Bytes
/
diff_prs.yml
File metadata and controls
32 lines (27 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Export Pull Requests Diff Table
on:
workflow_dispatch:
inputs:
base_branch:
description: 'Base branch to compare from (default: develop).'
default: 'develop'
required: false
target_branch:
description: 'Target branch to compare to.'
required: true
permissions:
contents: read
jobs:
fetch-prs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Fetch Merged PRs Between Branches
id: pr_diff
uses: ./.github/actions/pr_diff
with:
owner: strapi
repo: strapi
base_branch: ${{ github.event.inputs.base_branch }}
target_branch: ${{ github.event.inputs.target_branch }}