fix(generate_excel_cdr): reformat columns for targets and values reached #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push "generate excel CDR" pipeline | |
on: | |
push: | |
paths: | |
- ".github/workflows/push-generate-excel-cdr.yml" | |
- "generate_excel_cdr/**" | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.11" | |
- name: Configure OpenHEXA CLI | |
uses: blsq/openhexa-cli-action@v1 | |
with: | |
workspace: "praps-f5e786" | |
token: ${{ secrets.OH_TOKEN }} | |
- name: Push pipeline to OpenHEXA | |
run: | | |
openhexa pipelines push generate_excel_cdr \ | |
-n ${{ github.sha }} \ | |
-l "https://github.com/BLSQ/openhexa-pipelines-praps2/commit/${{ github.sha }}" \ | |
--yes |