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 f2011ab commit b099c24Copy full SHA for b099c24
.github/workflows/update_dependencies.yaml
@@ -72,14 +72,14 @@ jobs:
72
# Function to commit changes
73
commit_changes() {
74
git add requirements.txt pyproject.toml pdm.lock
75
- git commit -m "Update dependencies"
+ git commit -m ":arrow_up: Update dependencies lock"
76
}
77
78
# Function to create PR
79
create_pr() {
80
local BRANCH=$1
81
gh pr create \
82
- --title "Update dependencies" \
+ --title ":arrow_up: Update dependencies lock" \
83
--body "This PR updates the project dependencies. Please review the changes and merge if everything looks good." \
84
--base ${{ github.ref_name }} \
85
--head $BRANCH \
0 commit comments