/
githubmirror
/
strapi
Обзор
Документация
Войти
/
githubmirror
/
strapi
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
.github/workflows/diff_prs.yml
32 строки
769 B
Pádraic Slattery
chore(.github/workflows): bump outdated GitHub Actions versions (#25233)
26 янв 2026, 11:44
Не верифицирован
26 янв 2026, 11:44
2ad0f21
Код
Авторство
О чём код?
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 }}