We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8976bba commit c686c32Copy full SHA for c686c32
action.yml
@@ -19,15 +19,15 @@ runs:
19
steps:
20
- id: migration-fixer
21
run: |
22
- BRANCH="${{ inputs.default-branch }}"
+ TARGET_BRANCH="${{ inputs.default-branch }}"
23
24
EXTRA_ARGS="--fix"
25
26
if [[ '${{ inputs.force-update }}' == 'true' ]]; then
27
EXTRA_ARGS+=" -f"
28
fi
29
30
- python ${{ inputs.managepy-path }} makemigrations $EXTRA_ARGS -b "${BRANCH/refs\/heads\//}"
+ python ${{ inputs.managepy-path }} makemigrations $EXTRA_ARGS -b "${TARGET_BRANCH/refs\/heads\//}"
31
shell: bash
32
branding:
33
icon: check
0 commit comments