Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Collect test reports #1368

Merged
merged 2 commits into from
Nov 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/produce_data.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "[internal] Collect workflow data"

on:
workflow_run:
workflows: # List workflow that we want to collect data for
- "Build on macos-latest"
- "Build and Test"
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 }}
# ssh-private-key: ${{ secrets.SFTP_CICD_WRITER_KEY }}
Loading