You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: keep release green when auto PR creation is blocked (#7)
* fix: keep release green when auto PR creation is blocked
* ci: skip tauri build matrix on non-code PRs
* ci: grant path filter read access
* fix: only ignore expected post-release PR error
--title "chore: bump version to ${NEXT_VERSION}" \
693
694
--body "Post-release version bump to ${NEXT_VERSION}." \
694
695
--base main \
695
-
--head "chore/bump-version-${NEXT_VERSION}"
696
+
--head "chore/bump-version-${NEXT_VERSION}" >"$PR_CREATE_LOG" 2>&1; then
697
+
if grep -q "GitHub Actions is not permitted to create or approve pull requests" "$PR_CREATE_LOG"; then
698
+
echo "::warning::GitHub Actions could not create the post-release PR due to repository policy. The branch chore/bump-version-${NEXT_VERSION} was pushed successfully; open the PR manually."
0 commit comments