We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dd5742 commit 6427845Copy full SHA for 6427845
.github/workflows/daily-update.yml
@@ -67,6 +67,8 @@ jobs:
67
git config user.email "github-actions[bot]@users.noreply.github.com"
68
git add cloud_providers_v2.json README.md
69
git commit -m "chore: daily signature update $(date -u +%Y-%m-%d)"
70
+ # Delete remote branch if it exists from a previous failed run
71
+ git push origin --delete "$BRANCH" 2>/dev/null || true
72
git push origin "$BRANCH"
73
gh pr create --base stable --head "$BRANCH" \
74
--title "chore: daily signature update $(date -u +%Y-%m-%d)" \
0 commit comments