From 4b8867efa85c500497801aa0339b9a23cc2ced4c Mon Sep 17 00:00:00 2001 From: Joseph Meis Date: Thu, 26 Mar 2020 13:45:43 -0500 Subject: [PATCH 1/2] feat(stale): configure stalebot --- .github/workflows/stale.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000..0d663c2 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,22 @@ +name: Mark stale issues and pull requests + +on: + schedule: + - cron: "0 0 * * *" + +jobs: + stale: + + runs-on: ubuntu-latest + + steps: + - uses: actions/stale@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: ':wave: Hi! This issue has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.' + 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.' + stale-issue-label: 'stale' + exempt-issue-label: 'keep-open' + stale-pr-label: 'stale' + days-before-stale: 30 + days-before-close: 7 From 55bf9330113cd49cb627628454ef81dc75aa507a Mon Sep 17 00:00:00 2001 From: Reed Cozart Date: Wed, 6 May 2020 12:23:10 -0500 Subject: [PATCH 2/2] fix warnings in docker build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 75ab17e..3e366b0 100755 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,8 @@ USER root RUN yum -y install python3 RUN yum -y install python3-pip wget -RUN pip3 install --upgrade pip \ - && pip3 install --upgrade pipenv \ +RUN python3 -m pip install --upgrade pip \ + && python3 -m pip install --upgrade pipenv \ && pipenv install --system --deploy USER 1001