Update weekly-velocity-report.yml
This commit is contained in:
parent
dc7b4fda64
commit
47de37eb0a
|
@ -28,9 +28,16 @@ jobs:
|
|||
|
||||
- name: Append data to Google Sheet
|
||||
if: success()
|
||||
uses: gautamkrishnar/append-csv-to-google-sheet-action@v2
|
||||
uses: jroehl/gsheet-action@v2.0.0
|
||||
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 }}"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue