From 4a241c8b9fd9663d4c4f6caa801a7c886bc04432 Mon Sep 17 00:00:00 2001 From: Derek Su Date: Fri, 17 Jan 2025 16:46:26 +0800 Subject: [PATCH] WIP Signed-off-by: Derek Su --- .../create-crd-update-pr-in-longhorn-repo.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-crd-update-pr-in-longhorn-repo.yml b/.github/workflows/create-crd-update-pr-in-longhorn-repo.yml index 4ac4602854..52c33213c8 100644 --- a/.github/workflows/create-crd-update-pr-in-longhorn-repo.yml +++ b/.github/workflows/create-crd-update-pr-in-longhorn-repo.yml @@ -11,6 +11,12 @@ jobs: if: github.event.pull_request.merged == true runs-on: ubuntu-latest steps: + - name: Log triggering PR information + shell: bash + run: | + echo "Triggered by PR: #${{ github.event.pull_request.number }}" + echo "PR Title: ${{ github.event.pull_request.title }}" + echo "PR URL: ${{ github.event.pull_request.html_url }}" - uses: actions/checkout@v4 with: repository: derekbit/longhorn @@ -33,6 +39,7 @@ jobs: author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> commit-message: "chore(crd): update crds.yaml and manifests" - title: "chore(crd): update crds.yaml and manifests" + title: "chore(crd): update crds.yaml and manifests (PR longhorn/longhorn-manager#${{ github.event.pull_request.number}})" body: | - This PR updates the crds.yaml and manifests in the Longhorn repository. \ No newline at end of file + This PR updates the crds.yaml and manifests in the Longhorn repository. + It was triggered by longhorn/longhorn-manager#${{ github.event.pull_request.number}}. \ No newline at end of file