Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
improve consistency of gh action workflows
  • Loading branch information
TimidRobot committed Apr 12, 2024
commit 644a4e735b70e05c948018886ec4a0f194b610a1
2 changes: 1 addition & 1 deletion .github/workflows/manage_issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Python dependencies
run: pipenv sync --dev --system
run: pipenv sync --system

- name: 'run script to move closed issues to Active Sprint: Done'
run: ./move_closed_issues.py
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/normalize_repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,14 @@ jobs:
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}

- name: Install app dependencies
run: pipenv sync
run: pipenv sync --system

- name: Run script with token in env
run: pipenv run ./normalize_repos.py
run: ./normalize_repos.py
env:
ADMIN_GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }}

# https://github.com/actions/upload-artifact
- name: Export a report of invalid issues
uses: actions/upload-artifact@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push_data_to_ccos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
uses: actions/checkout@v4

- name: Install app dependencies
run: pipenv sync
run: pipenv sync --system

- name: Run script with tokens in env
run: pipenv run ./push_data_to_ccos.py
run: ./push_data_to_ccos.py
env:
ADMIN_GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }}
ADMIN_ASANA_TOKEN: ${{ secrets.ADMIN_ASANA_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/sync_community_teams.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
uses: actions/checkout@v4

- name: Install app dependencies
run: pipenv sync
run: pipenv sync --system

- name: Run script with tokens in env
run: pipenv run ./sync_community_teams.py
run: ./sync_community_teams.py
env:
ADMIN_GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }}
ADMIN_ASANA_TOKEN: ${{ secrets.ADMIN_ASANA_TOKEN }}