woocommerce/.github/workflows/pr-lint-monorepo.yml

33 lines
974 B
YAML
Raw Normal View History

name: Run lint checks potentially affecting projects across the monorepo
on:
pull_request:
branches:
- 'trunk'
2022-04-01 02:24:22 +00:00
concurrency:
group: changelogger-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
jobs:
changelogger_used:
name: Changelogger use
runs-on: ubuntu-20.04
timeout-minutes: 15
2022-04-01 02:24:22 +00:00
steps:
- uses: actions/checkout@v3
2022-04-01 02:24:22 +00:00
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
2022-04-01 02:24:22 +00:00
- name: Setup WooCommerce Monorepo
uses: ./.github/actions/setup-woocommerce-monorepo
2022-04-01 02:24:22 +00:00
with:
build: false
2022-04-01 02:24:22 +00:00
- name: Check change files are touched for touched projects
env:
BASE: ${{ github.event.pull_request.base.sha }}
HEAD: ${{ github.event.pull_request.head.sha }}
2022-04-01 18:12:16 +00:00
run: php tools/monorepo/check-changelogger-use.php --debug "$BASE" "$HEAD"
- name: Run changelog validation
run: pnpm run -r changelog validate