Skip to content

Commit 644a4e7

Browse files
committed
improve consistency of gh action workflows
1 parent 8272f21 commit 644a4e7

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/manage_issues.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/checkout@v4
2828

2929
- name: Install Python dependencies
30-
run: pipenv sync --dev --system
30+
run: pipenv sync --system
3131

3232
- name: 'run script to move closed issues to Active Sprint: Done'
3333
run: ./move_closed_issues.py

.github/workflows/normalize_repos.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ jobs:
2626
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
2727

2828
- name: Install app dependencies
29-
run: pipenv sync
29+
run: pipenv sync --system
3030

3131
- name: Run script with token in env
32-
run: pipenv run ./normalize_repos.py
32+
run: ./normalize_repos.py
3333
env:
3434
ADMIN_GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }}
3535

36+
# https://github.com/actions/upload-artifact
3637
- name: Export a report of invalid issues
3738
uses: actions/upload-artifact@v4
3839
with:

.github/workflows/push_data_to_ccos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
uses: actions/checkout@v4
2626

2727
- name: Install app dependencies
28-
run: pipenv sync
28+
run: pipenv sync --system
2929

3030
- name: Run script with tokens in env
31-
run: pipenv run ./push_data_to_ccos.py
31+
run: ./push_data_to_ccos.py
3232
env:
3333
ADMIN_GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }}
3434
ADMIN_ASANA_TOKEN: ${{ secrets.ADMIN_ASANA_TOKEN }}

.github/workflows/sync_community_teams.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
uses: actions/checkout@v4
2626

2727
- name: Install app dependencies
28-
run: pipenv sync
28+
run: pipenv sync --system
2929

3030
- name: Run script with tokens in env
31-
run: pipenv run ./sync_community_teams.py
31+
run: ./sync_community_teams.py
3232
env:
3333
ADMIN_GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }}
3434
ADMIN_ASANA_TOKEN: ${{ secrets.ADMIN_ASANA_TOKEN }}

0 commit comments

Comments
 (0)