Skip to content

Commit f55b28d

Browse files
committed
no newlines
1 parent 2dd3fed commit f55b28d

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/build.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ jobs:
1818
run: echo "$GITHUB_CONTEXT"
1919
- name: Fail if not a release publish # workaround has `on` doesn't have this filter
2020
run: exit 1
21-
if: github.event_name == 'release' && (github.event.action != 'published' ||
22-
github.event.action != 'rerequested')
21+
if: github.event_name == 'release' && (github.event.action != 'published' || github.event.action != 'rerequested')
2322
- name: Set up Python 3.5
2423
uses: actions/setup-python@v1
2524
with:
@@ -185,9 +184,7 @@ jobs:
185184
env:
186185
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
187186
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
188-
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' ||
189-
||
190-
github.event.action == 'rerequested')
187+
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested')
191188
- name: Install upload deps
192189
run: |
193190
pip install uritemplate
@@ -197,5 +194,4 @@ jobs:
197194
env:
198195
UPLOAD_URL: ${{ github.event.release.upload_url }}
199196
ADABOT_GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
200-
if: github.event_name == 'release' && (github.event.action == 'published' ||
201-
github.event.action == 'rerequested')
197+
if: github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested')

.github/workflows/create_website_pr.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,4 @@ jobs:
3535
env:
3636
RELEASE_TAG: ${{ github.event.release.tag_name }}
3737
ADABOT_GITHUB_ACCESS_TOKEN: ${{ secrets.ADABOT_GITHUB_ACCESS_TOKEN }}
38-
if: github.event_name == 'release' && (github.event.action == 'published' ||
39-
github.event.action == 'rerequested')
38+
if: github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested')

0 commit comments

Comments
 (0)