Skip to content

Commit

Permalink
WIP-004
Browse files Browse the repository at this point in the history
  • Loading branch information
TravisCarden committed Jan 22, 2025
1 parent 443f9fc commit ad57120
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/update-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
# Step 6: Run Update Script and Commit Changes
- name: Run Update Script
run: |
set -o xtrace
TIMESTAMP=$(date +'%Y%m%d%H%M%S')
BRANCH_NAME="update-packages-${TIMESTAMP}"
echo "branch_name=${BRANCH_NAME}" >> $GITHUB_ENV
Expand All @@ -54,11 +55,11 @@ jobs:
php .github/update_packages.php
git status
echo ========== BEFORE ==========
git add config/packages.yml
git add -a
git commit -m "Update dependencies in packages.yml"
echo ========== AFTER ==========
git show
git diff origin/develop
git diff origin/develop -- config
git push origin "$BRANCH_NAME"
# Step 7: Create Pull Request
Expand Down

0 comments on commit ad57120

Please sign in to comment.