-
Notifications
You must be signed in to change notification settings - Fork 87
35 lines (35 loc) · 1.33 KB
/
latest_dependency_checker.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Dependency update checker
on:
schedule:
- cron: '0 * * * *'
workflow_dispatch:
jobs:
update-deps:
if: github.repository_owner == 'alteryx'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v1
with:
python-version: '3.8.x'
- name: Update dependencies
id: vars
run: |
make installdeps-test
export DEPENDENCY_FILE_PATH=evalml/tests/dependency_update_check/latest_dependency_versions.txt
evalml/tests/dependency_update_check/make_deps_diff.sh
cat evalml/tests/dependency_update_check/latest_dependency_versions.txt
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.MACHINEFL_DEPENDENCY_CHECKER_TOKEN }}
commit-message: Update latest dependencies
title: Automated Latest Dependency Updates
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
body: "This is an auto-generated PR with **latest** dependency updates."
branch: latest-dep-update
branch-suffix: short-commit-hash
delete-branch: true
base: main
assignees: machineFL
reviewers: jeremyliweishih, chukarsten, michaelFu512, eccabay, christopherbunn