Collect data for run_id 13207235394 attempt 1 #973
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: "[internal] Collect workflow data" | |
run-name: "Collect data for run_id ${{ github.event.workflow_run.id }} attempt ${{ github.event.workflow_run.run_attempt }}" | |
on: | |
workflow_run: | |
workflows: # List workflow that we want to collect data for | |
- "On PR" | |
- "On push" | |
- "Nightly Tests" | |
- "Run Model Tests" | |
- "Run Tests" | |
types: | |
- completed | |
jobs: | |
produce-cicd-data: | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ github.token }} | |
steps: | |
- name: Collect CI/CD data | |
uses: tenstorrent/tt-github-actions/.github/actions/collect_data@main | |
if: ${{ github.event_name == 'workflow_run' }} | |
with: | |
repository: ${{ github.repository }} | |
run_id: ${{ github.event.workflow_run.id }} | |
run_attempt: ${{ github.event.workflow_run.run_attempt }} | |
sftp_host: ${{ secrets.SFTP_CICD_WRITER_HOSTNAME }} | |
sftp_user: ${{ secrets.SFTP_CICD_WRITER_USERNAME }} | |
sftp_optest_host: ${{ secrets.SFTP_OP_TEST_WRITER_HOSTNAME }} | |
sftp_optest_user: ${{ secrets.SFTP_OP_TEST_WRITER_USERNAME }} | |
ssh-private-key: ${{ secrets.SFTP_CICD_WRITER_KEY }} |