rsnext/.github/workflows/pull_request_stats.yml

17 lines
453 B
YAML
Raw Normal View History

on:
pull_request:
types: [opened, synchronize]
name: Generate Pull Request Stats
jobs:
stats:
name: PR Stats
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-01-25 22:11:27 +01:00
- run: echo ::set-output name=DOCS_CHANGE::$(node skip-docs-change.js echo 'not-docs-only-change')
id: docs-change
- uses: ./.github/actions/next-stats-action
2021-01-25 22:11:27 +01:00
if: ${{ steps.docs-change.outputs.DOCS_CHANGE != 'docs only change' }}