|
1 | | -name: Latest Dependency Checker |
2 | | -on: |
3 | | - schedule: |
4 | | - - cron: '0 * * * *' |
5 | | - workflow_dispatch: |
6 | | -jobs: |
7 | | - build: |
8 | | - runs-on: ubuntu-latest |
9 | | - steps: |
10 | | - - uses: actions/checkout@v2 |
11 | | - - name: Set up Python 3.9 |
12 | | - uses: actions/setup-python@v2 |
13 | | - with: |
14 | | - python-version: 3.9 |
15 | | - - name: Update dependencies |
16 | | - run: | |
17 | | - python -m pip install --upgrade pip |
18 | | - python -m pip install -e .[test] |
19 | | - make checkdeps OUTPUT_PATH=tests/requirement_files/latest_requirements.txt |
20 | | - - name: Create pull request |
21 | | - uses: peter-evans/create-pull-request@v3 |
22 | | - with: |
23 | | - token: ${{ secrets.REPO_SCOPED_TOKEN }} |
24 | | - commit-message: Update latest dependencies |
25 | | - title: Automated Latest Dependency Updates |
26 | | - body: "This is an auto-generated PR with **latest** dependency updates." |
27 | | - branch: latest-dep-update |
28 | | - branch-suffix: short-commit-hash |
29 | | - base: master |
30 | | - team-reviewers: core |
| 1 | +# name: Latest Dependency Checker |
| 2 | +# on: |
| 3 | +# schedule: |
| 4 | +# - cron: '0 * * * *' |
| 5 | +# workflow_dispatch: |
| 6 | +# jobs: |
| 7 | +# build: |
| 8 | +# runs-on: ubuntu-latest |
| 9 | +# steps: |
| 10 | +# - uses: actions/checkout@v2 |
| 11 | +# - name: Set up Python 3.9 |
| 12 | +# uses: actions/setup-python@v2 |
| 13 | +# with: |
| 14 | +# python-version: 3.9 |
| 15 | +# - name: Update dependencies |
| 16 | +# run: | |
| 17 | +# python -m pip install --upgrade pip |
| 18 | +# python -m pip install -e .[test] |
| 19 | +# make checkdeps OUTPUT_PATH=tests/requirement_files/latest_requirements.txt |
| 20 | +# - name: Create pull request |
| 21 | +# uses: peter-evans/create-pull-request@v3 |
| 22 | +# with: |
| 23 | +# token: ${{ secrets.REPO_SCOPED_TOKEN }} |
| 24 | +# commit-message: Update latest dependencies |
| 25 | +# title: Automated Latest Dependency Updates |
| 26 | +# body: "This is an auto-generated PR with **latest** dependency updates." |
| 27 | +# branch: latest-dep-update |
| 28 | +# branch-suffix: short-commit-hash |
| 29 | +# base: master |
| 30 | +# team-reviewers: core |
0 commit comments