File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Check Changelog
2
+
3
+ on : [pull_request]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v1
10
+ - name : Check that CHANGELOG is touched
11
+ run : |
12
+ cat $GITHUB_EVENT_PATH | jq .pull_request.title | grep -i '[((changelog skip)|(ci skip))]' || git diff remotes/origin/${{ github.base_ref }} --name-only | grep CHANGELOG.md
Original file line number Diff line number Diff line change 2
2
3
3
# Master
4
4
5
- Bug fix: pipenv no longer installs twice on CI
5
+ - Bug fix: pipenv no longer installs twice on CI
6
+ - Unpin Heroku-18 binary build deps
7
+ - Typo fixes
6
8
7
9
--------------------------------------------------------------------------------
8
10
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ if [ ! "$SKIP_PIP_INSTALL" ]; then
13
13
14
14
15
15
if ! pip-diff --stale requirements-declared.txt requirements.txt --exclude setuptools pip wheel > .heroku/python/requirements-stale.txt; then
16
- mount " failure.bad-requirements"
16
+ mcount " failure.bad-requirements"
17
17
fi
18
18
19
19
rm -fr requirements-declared.txt
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ENV WORKSPACE_DIR="/app/builds" \
7
7
DEBIAN_FRONTEND=noninteractive \
8
8
STACK="heroku-18"
9
9
10
- RUN apt-get update && apt-get install --no-install-recommends - y python-pip-whl=9.0.1-2 python-pip=9.0.1-2 python-setuptools python-wheel && rm -rf /var/lib/apt/lists/*
10
+ RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/*
11
11
12
12
COPY requirements.txt /app/
13
13
RUN pip install --disable-pip-version-check --no-cache-dir -r /app/requirements.txt
You can’t perform that action at this time.
0 commit comments