chore(gpu): rework ci to adapt to the shortage of h100 #7203
Workflow file for this run
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
# Add labels in pull request | |
name: PR label manager | |
on: | |
pull_request: | |
pull_request_review: | |
types: [submitted] | |
jobs: | |
trigger-tests: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Get current labels | |
uses: snnaplab/get-labels-action@f426df40304808ace3b5282d4f036515f7609576 | |
# Remove label if a push is performed after an approval | |
- name: Remove approved label | |
if: ${{ github.event_name == 'pull_request' && contains(fromJSON(env.LABELS), 'approved') }} | |
uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 | |
with: | |
# We use a PAT to have the same user (zama-bot) for label deletion as for creation. | |
github_token: ${{ secrets.FHE_ACTIONS_TOKEN }} | |
labels: approved | |
# Add label only if the review is approved and if the label doesn't already exist | |
- name: Add approved label | |
uses: actions-ecosystem/action-add-labels@18f1af5e3544586314bbe15c0273249c770b2daf | |
if: ${{ github.event_name == 'pull_request_review' | |
&& github.event.review.state == 'approved' | |
&& !contains(fromJSON(env.LABELS), 'approved') }} | |
with: | |
# We need to use a PAT to be able to trigger `labeled` event for the other workflow. | |
github_token: ${{ secrets.FHE_ACTIONS_TOKEN }} | |
labels: approved |