We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6feca4b commit d524f1aCopy full SHA for d524f1a
.github/workflows/quality.yml
@@ -207,7 +207,7 @@ jobs:
207
towncrier:
208
name: Towncrier check
209
runs-on: ubuntu-latest
210
- if: github.head_ref == 'develop'
+ if: github.event_name == 'pull_request' && github.head_ref == 'develop'
211
steps:
212
- uses: actions/checkout@v3
213
- name: Set up Python 3.8
@@ -226,4 +226,3 @@ jobs:
226
towncrier check --compare-with origin/${BASE_BRANCH}
227
env:
228
BASE_BRANCH: ${{ github.base_ref }}
229
- if: github.event_name == 'pull_request'
0 commit comments