Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@ jobs:
# Step 1: Check branch pattern
- name: Check branch pattern
id: branch_check
env:
HEAD_REF: ${{ github.head_ref }}
BASE_REF: ${{ github.base_ref }}
run: |
# Get branch information from context
HEAD_REF="${{ github.head_ref }}"
BASE_REF="${{ github.base_ref }}"
# Les variables sont maintenant définies dans l'environnement plutôt qu'injectées directement
MAIN_BRANCH="${{ env.MAIN_BRANCH }}"
VALID_PATTERN="${{ env.VALID_PATTERNS }}"

Expand Down Expand Up @@ -175,4 +176,4 @@ jobs:
}
} catch (error) {
console.log(`Error in cleanup: ${error}`);
}
}
Loading