2023-02-23 15:37:36 +00:00
|
|
|
name: Check which packages changed
|
|
|
|
|
|
|
|
permissions: read-all
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
2023-03-22 09:47:22 +00:00
|
|
|
inputs:
|
|
|
|
check-mergeable-state:
|
|
|
|
default: false
|
|
|
|
type: boolean
|
2023-02-23 15:37:36 +00:00
|
|
|
outputs:
|
|
|
|
changes:
|
|
|
|
description: 'The packages that were changed for this PR'
|
|
|
|
value: ${{ jobs.check-changes.outputs.changes }}
|
|
|
|
jobs:
|
|
|
|
check-changes:
|
|
|
|
name: Check which packages changed
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
changes: ${{ steps.changes.outputs.changes }}
|
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
2023-06-02 09:52:21 +00:00
|
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
2023-02-23 15:37:36 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2023-03-22 09:47:22 +00:00
|
|
|
- name: Check if branch is out of date
|
2023-05-30 11:07:55 +00:00
|
|
|
if: ${{ inputs.check-mergeable-state && github.base_ref == 'main' }}
|
2023-03-22 09:47:22 +00:00
|
|
|
run: |
|
|
|
|
git fetch origin main --depth 1 &&
|
|
|
|
git merge-base --is-ancestor origin/main @;
|
2023-02-23 15:37:36 +00:00
|
|
|
- name: Detect changed packages
|
2023-06-02 09:52:21 +00:00
|
|
|
uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1
|
2023-02-23 15:37:36 +00:00
|
|
|
id: changes
|
|
|
|
with:
|
|
|
|
filters: |
|
|
|
|
puppeteer:
|
|
|
|
- '.github/workflows/ci.yml'
|
|
|
|
- 'packages/puppeteer/**'
|
|
|
|
- 'packages/puppeteer-core/**'
|
|
|
|
- 'docker/**'
|
|
|
|
- 'test/**'
|
|
|
|
- 'test-d/**'
|
|
|
|
- 'tools/mochaRunner/**'
|
2023-03-23 09:22:17 +00:00
|
|
|
- '.mocharc.cjs'
|
2023-02-23 15:37:36 +00:00
|
|
|
website:
|
|
|
|
- '.github/workflows/ci.yml'
|
|
|
|
- 'docs/**'
|
|
|
|
- 'website/**'
|
2023-05-04 08:58:34 +00:00
|
|
|
- 'README.md'
|
2023-02-23 15:37:36 +00:00
|
|
|
ng-schematics:
|
|
|
|
- '.github/workflows/ci.yml'
|
|
|
|
- 'packages/ng-schematics/**'
|
|
|
|
browsers:
|
|
|
|
- '.github/workflows/ci.yml'
|
|
|
|
- 'packages/browsers/**'
|