summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Morgan <[email protected]>2025-08-05 17:10:37 -0400
committerGitHub <[email protected]>2025-08-05 17:10:37 -0400
commit47de37eb0a6470843218b8accc6344391717052b (patch)
tree57294c4bff9e0145bcb1dc48f740c22d16149f59
parentdc7b4fda642a0025760cc77f49da0f4d03af3506 (diff)
Update weekly-velocity-report.yml
-rw-r--r--.github/workflows/weekly-velocity-report.yml17
1 files changed, 12 insertions, 5 deletions
diff --git a/.github/workflows/weekly-velocity-report.yml b/.github/workflows/weekly-velocity-report.yml
index 852da9c4..7d11af5f 100644
--- a/.github/workflows/weekly-velocity-report.yml
+++ b/.github/workflows/weekly-velocity-report.yml
@@ -28,9 +28,16 @@ jobs:
- name: Append data to Google Sheet
if: success()
- uses: gautamkrishnar/append-csv-to-google-sheet-action@v2
+ uses: jroehl/[email protected]
with:
- 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 }}
+ spreadsheetId: ${{ secrets.SPREADSHEET_ID }}
+ commands: |
+ [
+ {
+ "command": "appendData",
+ "params": {
+ "sheetName": "Weekly Reports",
+ "data": "${{ steps.report.outputs.csv_data }}"
+ }
+ }
+ ]