mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-05 18:20:38 -08:00
* ci: use v3 of cerebrus that also posts a build size report to PRs * fix: resolved permissions issues in checking PR build size
18 lines
416 B
YAML
18 lines
416 B
YAML
name: Validate PR Paths
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, reopened, synchronize]
|
|
|
|
jobs:
|
|
validate-pr:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Validate PR
|
|
uses: TiddlyWiki/cerebrus@v4
|
|
with:
|
|
pr_number: ${{ github.event.pull_request.number }}
|
|
repo: ${{ github.repository }}
|
|
base_ref: ${{ github.base_ref }}
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|