diff --git a/.github/workflows/self-nightly-caller.yml b/.github/workflows/self-nightly-caller.yml index cae8fd82793ae1..caca4a1b60e596 100644 --- a/.github/workflows/self-nightly-caller.yml +++ b/.github/workflows/self-nightly-caller.yml @@ -25,6 +25,7 @@ jobs: slack_report_channel: "#transformers-ci-past-future" runner: daily-ci docker: huggingface/transformers-all-latest-torch-nightly-gpu + ci_event: Nightly CI secrets: inherit deepspeed-ci: @@ -36,4 +37,5 @@ jobs: slack_report_channel: "#transformers-ci-past-future" runner: daily-ci docker: huggingface/transformers-pytorch-deepspeed-nightly-gpu + ci_event: Nightly CI secrets: inherit diff --git a/.github/workflows/self-scheduled.yml b/.github/workflows/self-scheduled.yml index 27375662fbbe1b..725f1d26a83373 100644 --- a/.github/workflows/self-scheduled.yml +++ b/.github/workflows/self-scheduled.yml @@ -21,6 +21,9 @@ on: docker: required: true type: string + ci_event: + required: true + type: string env: HF_HOME: /mnt/cache @@ -454,5 +457,6 @@ jobs: # This would be an empty string if `setup` is skipped. folder_slices: ${{ needs.setup.outputs.folder_slices }} quantization_matrix: ${{ needs.setup.outputs.quantization_matrix }} - + ci_event: ${{ inputs.ci_event }} + secrets: inherit diff --git a/.github/workflows/slack-report.yml b/.github/workflows/slack-report.yml index 0d1197a05d122a..37ff21133f6c68 100644 --- a/.github/workflows/slack-report.yml +++ b/.github/workflows/slack-report.yml @@ -18,6 +18,9 @@ on: quantization_matrix: required: true type: string + ci_event: + required: true + type: string jobs: @@ -73,7 +76,7 @@ jobs: CI_SLACK_BOT_TOKEN: ${{ secrets.CI_SLACK_BOT_TOKEN }} ACCESS_REPO_INFO_TOKEN: ${{ secrets.ACCESS_REPO_INFO_TOKEN }} SLACK_REPORT_CHANNEL: ${{ inputs.slack_report_channel }} - CI_EVENT: scheduled + CI_EVENT: ${{ inputs.ci_event }} CI_SHA: ${{ github.sha }} CI_TEST_JOB: ${{ inputs.job }} SETUP_STATUS: ${{ inputs.setup_status }}