From 5429e570027df6e1b77f28f399503e7651e90651 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Thu, 16 Jul 2020 19:42:19 +0900 Subject: [PATCH] Keep env var output for backwards compat --- .github/workflows/cpr-example-command.yml | 3 +-- README.md | 11 ++++++----- dist/index.js | 5 ++++- src/github-helper.ts | 5 ++++- 4 files changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/workflows/cpr-example-command.yml b/.github/workflows/cpr-example-command.yml index c1b7ba7..87dd509 100644 --- a/.github/workflows/cpr-example-command.yml +++ b/.github/workflows/cpr-example-command.yml @@ -33,9 +33,8 @@ jobs: branch: example-patches request-to-parent: false - - name: Check outputs + - name: Check output run: | - echo "Pull Request Number - ${{ env.PULL_REQUEST_NUMBER }}" echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" - name: Add reaction diff --git a/README.md b/README.md index 1ca3fbb..f6c0d38 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ All inputs are **optional**. If not set, sensible default values will be used. ### Action outputs -The pull request number is output as both an environment variable and a step output. +The pull request number is output as a step output. Note that in order to read the step output the action step must have an id. ```yml @@ -71,7 +71,6 @@ Note that in order to read the step output the action step must have an id. uses: peter-evans/create-pull-request@v2 - name: Check outputs run: | - echo "Pull Request Number - ${{ env.PULL_REQUEST_NUMBER }}" echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" ``` @@ -184,8 +183,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Create report file + + - name: Make changes to pull request run: date +%s > report.txt + - name: Create Pull Request id: cpr uses: peter-evans/create-pull-request@v2 @@ -209,9 +210,9 @@ jobs: draft: false branch: example-patches request-to-parent: false - - name: Check outputs + + - name: Check output run: | - echo "Pull Request Number - ${{ env.PULL_REQUEST_NUMBER }}" echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" ``` diff --git a/dist/index.js b/dist/index.js index d800311..1417472 100644 --- a/dist/index.js +++ b/dist/index.js @@ -8084,8 +8084,11 @@ class GitHubHelper { const headBranch = `${headRepo.owner.login}:${inputs.branch}`; // Create or update the pull request const pullNumber = yield this.createOrUpdate(inputs, baseRepository, headBranch); - // Set output + // Set outputs + core.startGroup('Setting outputs'); core.setOutput('pull-request-number', pullNumber); + core.exportVariable('PULL_REQUEST_NUMBER', pullNumber); + core.endGroup(); // Set milestone, labels and assignees const updateIssueParams = {}; if (inputs.milestone) { diff --git a/src/github-helper.ts b/src/github-helper.ts index 32dd5d2..3476022 100644 --- a/src/github-helper.ts +++ b/src/github-helper.ts @@ -103,8 +103,11 @@ export class GitHubHelper { headBranch ) - // Set output + // Set outputs + core.startGroup('Setting outputs') core.setOutput('pull-request-number', pullNumber) + core.exportVariable('PULL_REQUEST_NUMBER', pullNumber) + core.endGroup() // Set milestone, labels and assignees const updateIssueParams = {}