Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
build: add paths-ignore for build-tarball workflow
In GitHub Actions, don't run build-tarball if the only changed files are
docs.
  • Loading branch information
Trott committed Sep 14, 2021
commit bd5bc3752a19221a76b260dd5bd4a536fcab28bc
10 changes: 10 additions & 0 deletions .github/workflows/build-tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,22 @@ name: Build from tarball
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths-ignore:
- '.mailmap'
- '**.md'
- 'AUTHORS'
- 'doc/**'
push:
branches:
- master
- main
- v[0-9]+.x-staging
- v[0-9]+.x
paths-ignore:
- '.mailmap'
- '**.md'
- 'AUTHORS'
- 'doc/**'

env:
FLAKY_TESTS: dontcare
Expand Down