You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
465 B
YAML
18 lines
465 B
YAML
# workflow steps that ought to pass on a PR, but shouldn't block a preview.
|
|
|
|
name: "Checks"
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
check-newsfragments:
|
|
name: "🔎 Check that new newsfragments are valid"
|
|
if: github.event_name == 'pull_request'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- run: scripts/check-newsfragments
|
|
env:
|
|
PULL_REQUEST_NUMBER: ${{ github.event.number }} |