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 8358531 commit d5771b7Copy full SHA for d5771b7
.github/workflows/update-swift-version.yml
@@ -61,18 +61,18 @@ jobs:
61
exit 0
62
fi
63
64
+ title="Update to $latest"
65
+ body="Updates the \`.swift-version\` file to Swift `$latest`.
66
+
67
+ > This PR was automatically generated."
68
69
git add .swift-version
- git commit -m "Update Swift version to $latest"
70
+ git commit -m "$title" -m "$body"
71
git push -u origin "$branch"
72
73
gh auth setup-git
74
pr=$(gh pr list --head "$branch" --state open --json number --jq '.[0].number')
75
- title="ci: update Swift version to $latest"
- body="Updates the \`.swift-version\` file to Swift `$latest`.
-
- > This PR was automatically generated."
76
if [[ -z "$pr" ]]; then
77
gh pr create \
78
--title "$title" \
0 commit comments