about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide/.github/workflows/rustc-pull.yml
diff options
context:
space:
mode:
authorThe Miri Cronjob Bot <miri@cron.bot>2025-01-31 05:04:21 +0000
committerThe Miri Cronjob Bot <miri@cron.bot>2025-01-31 05:04:21 +0000
commit7f414f9c39d8079f7c88bbdafb4d6e3a4ecea92c (patch)
tree4456a4c6935a4d4679096be97804aabe767709ca /src/doc/rustc-dev-guide/.github/workflows/rustc-pull.yml
parentdc3677587798df6b0bc6bfa78ea908efded39466 (diff)
parent9734ebb9be2ad760385555e36bb0d065e726d6f5 (diff)
downloadrust-7f414f9c39d8079f7c88bbdafb4d6e3a4ecea92c.tar.gz
rust-7f414f9c39d8079f7c88bbdafb4d6e3a4ecea92c.zip
Merge from rustc
Diffstat (limited to 'src/doc/rustc-dev-guide/.github/workflows/rustc-pull.yml')
-rw-r--r--src/doc/rustc-dev-guide/.github/workflows/rustc-pull.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/.github/workflows/rustc-pull.yml b/src/doc/rustc-dev-guide/.github/workflows/rustc-pull.yml
index 87a3ee2e78f..615927d55e5 100644
--- a/src/doc/rustc-dev-guide/.github/workflows/rustc-pull.yml
+++ b/src/doc/rustc-dev-guide/.github/workflows/rustc-pull.yml
@@ -50,10 +50,10 @@ jobs:
           RESULT=`gh pr list --author github-actions[bot] --state open -q 'map(select(.title=="Rustc pull update")) | length' --json title`
           if [[ "$RESULT" -eq 0 ]]; then
             echo "Creating new pull request"
-            PR_URL=gh pr create -B master --title 'Rustc pull update' --body 'Latest update from rustc.'
+            PR_URL=`gh pr create -B master --title 'Rustc pull update' --body 'Latest update from rustc.'`
             echo "pr_url=$PR_URL" >> $GITHUB_OUTPUT
           else
-            PR_URL=gh pr list --author github-actions[bot] --state open -q 'map(select(.title=="Rustc pull update")) | .[0].url' --json url,title
+            PR_URL=`gh pr list --author github-actions[bot] --state open -q 'map(select(.title=="Rustc pull update")) | .[0].url' --json url,title`
             echo "pr_url=$PR_URL" >> $GITHUB_OUTPUT
           fi
         env: