Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit 48d29a4

Browse files
authored
Merge pull request #58 from IBM/development
promote
2 parents 5afb8df + 77891f6 commit 48d29a4

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

.github/workflows/stale.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Mark stale issues and pull requests
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
7+
jobs:
8+
stale:
9+
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/stale@v1
14+
with:
15+
repo-token: ${{ secrets.GITHUB_TOKEN }}
16+
stale-issue-message: ':wave: Hi! This issue has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.'
17+
stale-pr-message: ':wave: Hi! This pull request has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.'
18+
stale-issue-label: 'stale'
19+
exempt-issue-label: 'keep-open'
20+
stale-pr-label: 'stale'
21+
days-before-stale: 30
22+
days-before-close: 7

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ USER root
99
RUN yum -y install python3
1010
RUN yum -y install python3-pip wget
1111

12-
RUN pip3 install --upgrade pip \
13-
&& pip3 install --upgrade pipenv \
12+
RUN python3 -m pip install --upgrade pip \
13+
&& python3 -m pip install --upgrade pipenv \
1414
&& pipenv install --system --deploy
1515

1616
USER 1001

0 commit comments

Comments
 (0)