Skip to content

Commit

Permalink
git push first
Browse files Browse the repository at this point in the history
  • Loading branch information
fujiwara committed Jan 6, 2025
1 parent b0af548 commit 97c5896
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/check-sdk-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,12 @@ jobs:
echo "No changes detected"
exit 0
fi
git switch -c update-aws-sdk-go-v2-ecs-$(date +%Y-%m-%d-%H-%M-%S)
branch_name="update-aws-sdk-go-v2-ecs-$(date +%Y-%m-%d-%H-%M-%S)"
title="Update aws-sdk-go-v2 about service/ecs $(date +%Y-%m-%d)"
git switch -c "${branch_name}"
git add aws-sdk-go-v2-ecs.md
git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
git config --global user.name "${GITHUB_ACTOR}"
git commit -m "Update aws-sdk-go-v2 about service/ecs $(date +%Y-%m-%d)"
git commit -m "${title}"
git push origin "${branch_name}"
gh pr create --fill

0 comments on commit 97c5896

Please sign in to comment.