Commit 11e4fcb 1 parent 1ed2648 commit 11e4fcb Copy full SHA for 11e4fcb
File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 30
30
if : ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }}
31
31
id : set-variables
32
32
run : |
33
- echo ::set-output name= pr-id::" $(cat /tmp/clang-tidy-result/pr-id.txt)"
34
- echo ::set-output name= pr-head-repo::" $(cat /tmp/clang-tidy-result/pr-head-repo.txt)"
35
- echo ::set-output name= pr-head-ref::" $(cat /tmp/clang-tidy-result/pr-head-ref.txt)"
33
+ echo " pr-id= $(cat /tmp/clang-tidy-result/pr-id.txt)" >> $GITHUB_OUTPUT
34
+ echo " pr-head-repo= $(cat /tmp/clang-tidy-result/pr-head-repo.txt)" >> $GITHUB_OUTPUT
35
+ echo " pr-head-ref= $(cat /tmp/clang-tidy-result/pr-head-ref.txt)" >> $GITHUB_OUTPUT
36
36
37
37
- name : Check out PR head
38
38
if : ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }}
Original file line number Diff line number Diff line change 31
31
if : ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }}
32
32
id : set-variables
33
33
run : |
34
- echo ::set-output name= pr-id::" $(cat /tmp/clang-tidy-result/pr-id.txt)"
35
- echo ::set-output name= pr-head-repo::" $(cat /tmp/clang-tidy-result/pr-head-repo.txt)"
36
- echo ::set-output name= pr-head-ref::" $(cat /tmp/clang-tidy-result/pr-head-ref.txt)"
34
+ echo " pr-id= $(cat /tmp/clang-tidy-result/pr-id.txt)" >> $GITHUB_OUTPUT
35
+ echo " pr-head-repo= $(cat /tmp/clang-tidy-result/pr-head-repo.txt)" >> $GITHUB_OUTPUT
36
+ echo " pr-head-ref= $(cat /tmp/clang-tidy-result/pr-head-ref.txt)" >> $GITHUB_OUTPUT
37
37
38
38
- name : Check out PR head
39
39
if : ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }}
Original file line number Diff line number Diff line change 26
26
REF_NAME="${{ github.ref_name }}"
27
27
fi
28
28
29
- echo ::set-output name= ref-name::" $REF_NAME"
30
- echo ::set-output name= tag-name::" ${REF_NAME#beta/}"
29
+ echo " ref-name= $REF_NAME" >> $GITHUB_OUTPUT
30
+ echo " tag-name= ${REF_NAME#beta/}" >> $GITHUB_OUTPUT "
31
31
32
32
- name : Check out repository
33
33
uses : actions/checkout@v3
39
39
id : set-target-name
40
40
run : |
41
41
if [[ "${{ steps.set-tag-name.outputs.ref-name }}" =~ "beta/" ]]; then
42
- echo ::set-output name= target-name::" ${{ steps.set-tag-name.outputs.ref-name }}"
42
+ echo " target-name= ${{ steps.set-tag-name.outputs.ref-name }}" >> $GITHUB_OUTPUT
43
43
fi
44
44
45
45
- name : Create a local tag for beta branches
62
62
verb=edit
63
63
fi
64
64
65
- echo ::set-output name=verb::" $verb"
65
+ echo "verb= $verb" >> $GITHUB_OUTPUT
66
66
env :
67
67
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
68
68
You can’t perform that action at this time.
0 commit comments