We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 433e51a commit ebb3089Copy full SHA for ebb3089
.github/workflows/ciff-example-command.yml
@@ -12,10 +12,10 @@ jobs:
12
run: |
13
repository=${{ github.event.client_payload.slash_command.repository }}
14
if [[ -z "$repository" ]]; then repository=${{ github.repository }}; fi
15
- echo ::set-output name=repository::$repository
+ echo "repository=$repository" >> $GITHUB_OUTPUT
16
branch=${{ github.event.client_payload.slash_command.branch }}
17
if [[ -z "$branch" ]]; then branch="main"; fi
18
- echo ::set-output name=branch::$branch
+ echo "branch=$branch" >> $GITHUB_OUTPUT
19
20
# Checkout the branch to test
21
- uses: actions/checkout@v3
0 commit comments