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

ENH / Workflow: Use repository variable #1823

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Changes from all commits
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
10 changes: 5 additions & 5 deletions .github/workflows/build_docker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
if: always()
uses: huggingface/hf-workflows/.github/actions/post-slack@main
with:
slack_channel: "C06LKJB31RU"
slack_channel: ${{ env.CI_SLACK_CHANNEL }}
title: 🤗 Results of the PEFT-CPU docker build
status: ${{ job.status }}
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
if: always()
uses: huggingface/hf-workflows/.github/actions/post-slack@main
with:
slack_channel: "C06LKJB31RU"
slack_channel: ${{ env.CI_SLACK_CHANNEL }}
title: 🤗 Results of the PEFT-GPU docker build
status: ${{ job.status }}
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
if: always()
uses: huggingface/hf-workflows/.github/actions/post-slack@main
with:
slack_channel: "C06LKJB31RU"
slack_channel: ${{ env.CI_SLACK_CHANNEL }}
title: 🤗 Results of the PEFT-GPU (bnb source / HF latest) docker build
status: ${{ job.status }}
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
if: always()
uses: huggingface/hf-workflows/.github/actions/post-slack@main
with:
slack_channel: "C06LKJB31RU"
slack_channel: ${{ env.CI_SLACK_CHANNEL }}
title: 🤗 Results of the PEFT-GPU (bnb source / HF source) docker build
status: ${{ job.status }}
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
if: always()
uses: huggingface/hf-workflows/.github/actions/post-slack@main
with:
slack_channel: "C06LKJB31RU"
slack_channel: ${{ env.CI_SLACK_CHANNEL }}
title: 🤗 Results of the PEFT-GPU (bnb source multi-backend / HF latest) docker build
status: ${{ job.status }}
slack_token: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }}
Expand Down
Loading