From 2bf9a3e14fde534ab6caddad7467aa527ad0108b Mon Sep 17 00:00:00 2001 From: Jimmi Dyson Date: Tue, 13 Feb 2024 13:28:46 +0000 Subject: [PATCH] ci: Ignore devbox update PRs in release notes (#356) --- .github/workflows/devbox-update.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/devbox-update.yml b/.github/workflows/devbox-update.yml index f0eab1e17..a9d6f02e2 100644 --- a/.github/workflows/devbox-update.yml +++ b/.github/workflows/devbox-update.yml @@ -79,7 +79,8 @@ jobs: run: | pr_url="$(gh pr create --base "${{ github.ref_name }}" --head "${DESTINATION_BRANCH}" \ --title "${{ steps.commit-changes.outputs.message }}" \ - --body "This PR was automatically created by the scheduled devbox update workflow.")" + --body "This PR was automatically created by the scheduled devbox update workflow." \ + --label ignore-for-release)" gh pr merge --auto --squash "${pr_url}" echo "pr_url=${pr_url}" >>"${GITHUB_OUTPUT}"