summaryrefslogtreecommitdiff
path: root/.github/workflows/auto-start-ci.yml
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2020-10-14 11:17:54 +0200
committerBeth Griggs <bgriggs@redhat.com>2020-12-07 18:03:49 +0000
commit4813d913e3f9bb450ce94e2ca9c444d7dce44081 (patch)
tree44999e61e24b0a4fccbb330061a635ab11c62a07 /.github/workflows/auto-start-ci.yml
parent71e0f337510a7505249ef54202a2126f2b191962 (diff)
downloadnode-new-4813d913e3f9bb450ce94e2ca9c444d7dce44081.tar.gz
build: use GITHUB_ENV file to set env variables
The other way is deprecated. PR-URL: https://github.com/nodejs/node/pull/35638 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to '.github/workflows/auto-start-ci.yml')
-rw-r--r--.github/workflows/auto-start-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml
index 79f3cbd9de..7a430274d3 100644
--- a/.github/workflows/auto-start-ci.yml
+++ b/.github/workflows/auto-start-ci.yml
@@ -26,8 +26,8 @@ jobs:
- name: Set variables
run: |
- echo "::set-env name=REPOSITORY::$(echo ${{ github.repository }} | cut -d/ -f2)"
- echo "::set-env name=OWNER::${{ github.repository_owner }}"
+ echo "REPOSITORY=$(echo ${{ github.repository }} | cut -d/ -f2)" >> $GITHUB_ENV
+ echo "OWNER=${{ github.repository_owner }}" >> $GITHUB_ENV
# Get Pull Requests
- name: Get Pull Requests