Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into baz/cdk/aouth-extract…
Browse files Browse the repository at this point in the history
…-tokens-recursively
  • Loading branch information
bazarnov committed Jan 28, 2025
2 parents 0599b82 + d9d93ab commit 8afeb66
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/poetry-lock-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,17 @@ jobs:
with:
pr: ${{ github.event.inputs.pr }}

- name: Check for blank or missing poetry.lock
run: |
if [ ! -s "poetry.lock" ]; then
echo "poetry.lock missing or blank. Fetching from main branch..."
git fetch origin main
git checkout origin/main -- poetry.lock
echo "Lock file restored from main."
else
echo "poetry.lock found. Proceeding."
fi
- name: Get PR info
id: pr-info
run: |
Expand Down

0 comments on commit 8afeb66

Please sign in to comment.