File tree 4 files changed +8
-7
lines changed
4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 27
27
uses : actions/checkout@v4
28
28
29
29
- name : Install Python dependencies
30
- run : pipenv sync --dev -- system
30
+ run : pipenv sync --system
31
31
32
32
- name : ' run script to move closed issues to Active Sprint: Done'
33
33
run : ./move_closed_issues.py
Original file line number Diff line number Diff line change @@ -26,13 +26,14 @@ jobs:
26
26
token : ${{ secrets.ADMIN_GITHUB_TOKEN }}
27
27
28
28
- name : Install app dependencies
29
- run : pipenv sync
29
+ run : pipenv sync --system
30
30
31
31
- name : Run script with token in env
32
- run : pipenv run ./normalize_repos.py
32
+ run : ./normalize_repos.py
33
33
env :
34
34
ADMIN_GITHUB_TOKEN : ${{ secrets.ADMIN_GITHUB_TOKEN }}
35
35
36
+ # https://github.com/actions/upload-artifact
36
37
- name : Export a report of invalid issues
37
38
uses : actions/upload-artifact@v4
38
39
with :
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ jobs:
25
25
uses : actions/checkout@v4
26
26
27
27
- name : Install app dependencies
28
- run : pipenv sync
28
+ run : pipenv sync --system
29
29
30
30
- name : Run script with tokens in env
31
- run : pipenv run ./push_data_to_ccos.py
31
+ run : ./push_data_to_ccos.py
32
32
env :
33
33
ADMIN_GITHUB_TOKEN : ${{ secrets.ADMIN_GITHUB_TOKEN }}
34
34
ADMIN_ASANA_TOKEN : ${{ secrets.ADMIN_ASANA_TOKEN }}
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ jobs:
25
25
uses : actions/checkout@v4
26
26
27
27
- name : Install app dependencies
28
- run : pipenv sync
28
+ run : pipenv sync --system
29
29
30
30
- name : Run script with tokens in env
31
- run : pipenv run ./sync_community_teams.py
31
+ run : ./sync_community_teams.py
32
32
env :
33
33
ADMIN_GITHUB_TOKEN : ${{ secrets.ADMIN_GITHUB_TOKEN }}
34
34
ADMIN_ASANA_TOKEN : ${{ secrets.ADMIN_ASANA_TOKEN }}
You can’t perform that action at this time.
0 commit comments