diff options
| author | Bryan Morgan <[email protected]> | 2025-08-05 17:08:22 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-05 17:08:22 -0400 |
| commit | dc7b4fda642a0025760cc77f49da0f4d03af3506 (patch) | |
| tree | fba15330cb0db8287edb28e89de3b03d5a1659fd | |
| parent | 3dcca317961ee41c9d31ca1729449697ccb89c53 (diff) | |
Update weekly-velocity-report.yml
| -rw-r--r-- | .github/workflows/weekly-velocity-report.yml | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/.github/workflows/weekly-velocity-report.yml b/.github/workflows/weekly-velocity-report.yml index 7d11af5f..852da9c4 100644 --- a/.github/workflows/weekly-velocity-report.yml +++ b/.github/workflows/weekly-velocity-report.yml @@ -28,16 +28,9 @@ jobs: - name: Append data to Google Sheet if: success() - uses: jroehl/[email protected] + uses: gautamkrishnar/append-csv-to-google-sheet-action@v2 with: - spreadsheetId: ${{ secrets.SPREADSHEET_ID }} - commands: | - [ - { - "command": "appendData", - "params": { - "sheetName": "Weekly Reports", - "data": "${{ steps.report.outputs.csv_data }}" - } - } - ] + sheet-name: "Weekly Reports" # The name of the tab in your sheet + csv-text: ${{ steps.report.outputs.csv_data }} + spreadsheet-id: ${{ secrets.SPREADSHEET_ID }} + google-api-key-base64: ${{ secrets.GCP_SA_KEY }} |
