Update weekly-velocity-report.yml

This commit is contained in:
Bryan Morgan 2025-08-05 17:08:22 -04:00 committed by GitHub
parent 3dcca31796
commit dc7b4fda64
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 12 deletions

View File

@ -28,16 +28,9 @@ jobs:
- name: Append data to Google Sheet - name: Append data to Google Sheet
if: success() if: success()
uses: jroehl/gsheet-action@v2.0.0 uses: gautamkrishnar/append-csv-to-google-sheet-action@v2
with: with:
spreadsheetId: ${{ secrets.SPREADSHEET_ID }} sheet-name: "Weekly Reports" # The name of the tab in your sheet
commands: | csv-text: ${{ steps.report.outputs.csv_data }}
[ spreadsheet-id: ${{ secrets.SPREADSHEET_ID }}
{ google-api-key-base64: ${{ secrets.GCP_SA_KEY }}
"command": "appendData",
"params": {
"sheetName": "Weekly Reports",
"data": "${{ steps.report.outputs.csv_data }}"
}
}
]