From 35a86b2661339e08dfcb511dd420827ddb4a268b Mon Sep 17 00:00:00 2001 From: Garry O'Donnell Date: Tue, 4 Feb 2025 10:39:08 +0000 Subject: [PATCH] feat: add repository URL to action PR message --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index 419790d..fad3797 100644 --- a/action.yaml +++ b/action.yaml @@ -133,6 +133,6 @@ runs: gh auth login --with-token <<< ${{ steps.app-token.outputs.token }} gh pr create \ --title "chore: Update ${{ inputs.name }} subgraph to ${{ github.ref_name }}" \ - --body "" \ + --body "- [Repository](${{ github.repositoryUrl }})" \ --head ${{ inputs.name }}-${{ github.ref_name }} \ --base main