Skip to content

Commit ebb3089

Browse files
committed
Replace set-output
1 parent 433e51a commit ebb3089

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ciff-example-command.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
run: |
1313
repository=${{ github.event.client_payload.slash_command.repository }}
1414
if [[ -z "$repository" ]]; then repository=${{ github.repository }}; fi
15-
echo ::set-output name=repository::$repository
15+
echo "repository=$repository" >> $GITHUB_OUTPUT
1616
branch=${{ github.event.client_payload.slash_command.branch }}
1717
if [[ -z "$branch" ]]; then branch="main"; fi
18-
echo ::set-output name=branch::$branch
18+
echo "branch=$branch" >> $GITHUB_OUTPUT
1919
2020
# Checkout the branch to test
2121
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)