remove schedule-triggered CI workflow (#2178)

pull/2182/head
Adeeb Shihadeh 5 years ago committed by GitHub
parent be2b093d6e
commit 54eb160e15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      .github/workflows/test.yaml
  2. 23
      .github/workflows/update-pipfile.yml

@ -2,8 +2,7 @@ name: openpilot tests
on:
push:
pull_request:
schedule:
- cron: '0 * * * *'
status:
env:
RUN: docker run --shm-size 1G --rm tmppilot /bin/sh -c
@ -102,7 +101,7 @@ jobs:
name: docker push prebuilt
runs-on: ubuntu-16.04
timeout-minutes: 50
if: github.event_name == 'schedule' && github.repository == 'commaai/openpilot'
if: github.event_name == 'status' && github.repository == 'commaai/openpilot'
needs: [static_analysis, unit_tests, process_replay, test_longitudinal, test_car_models]
steps:
- uses: actions/checkout@v2

@ -1,23 +0,0 @@
name: "Update Pipfile.lock"
on:
schedule:
- cron: '00 15 * * 1' # Every monday on 15:00 UTC
jobs:
piplock:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install wheel
- run: pip install pipenv
- run: pipenv lock
- uses: actions/upload-artifact@v2
with:
name: "Pipfile lock"
path: Pipfile.lock
- uses: peter-evans/create-pull-request@v2
with:
title: "Update Pipfile.lock (dependencies)"
branch: update-pipfile
commit-message: "[Bot] Update Pipfile.lock dependencies"
Loading…
Cancel
Save