Skip to content

Commit

Permalink
Merge pull request NVIDIA#1049 from russellb/release-branch-CI
Browse files Browse the repository at this point in the history
Run CI jobs on release branches
  • Loading branch information
mergify[bot] authored Apr 30, 2024
2 parents 619eabc + d211e6c commit 11c73d8
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ on:
push:
branches:
- "main"
- "release-**"
paths:
- '.github/**'
pull_request:
branches:
- "main"
- '.github/**'
paths:
- '.github/**'

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@ name: docs

on:
push:
branches: ["main"]
branches:
- "main"
- "release-**"
paths:
- '**/*.md'
- '.markdownlint-cli2.yaml'
pull_request:
branches: ["main"]
branches:
- "main"
- "release-**"
paths:
- '**/*.md'
- '.markdownlint-cli2.yaml'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- "main"
- "release-**"
paths:
- '**.py'
- 'pyproject.toml'
Expand All @@ -16,6 +17,7 @@ on:
pull_request:
branches:
- "main"
- "release-**"
paths:
- '**.py'
- 'pyproject.toml'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ on:
push:
branches:
- main
- "release-**"
tags:
- "v*"
pull_request:
branches:
- main
- "release-**"
release:
types:
- published
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/spellcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ name: Spellcheck

on:
pull_request:
branches: [main]
branches:
- main
- "release-**"
paths:
- '**.md'
- .github/**
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
push:
branches:
- "main"
- "release-**"
paths:
- '**.py'
- 'pyproject.toml'
Expand All @@ -17,6 +18,7 @@ on:
pull_request:
branches:
- "main"
- "release-**"
paths:
- '**.py'
- 'pyproject.toml'
Expand Down

0 comments on commit 11c73d8

Please sign in to comment.