Skip to content

Commit

Permalink
updates output value of login name step
Browse files Browse the repository at this point in the history
  • Loading branch information
SonOfLope committed Sep 20, 2024
1 parent c1ad351 commit 23807e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/request-sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
uses: actions/checkout@v4
- name: Set login name to lowercase
run: |
echo "USERNAME="${{ github.event.sender.login }}" | tr '[:upper:]' '[:lower:]')'" >> $GITHUB_OUTPUT
USERNAME=$(${{ github.event.sender.login }} | tr '[:upper:]' '[:lower:]')
echo $USERNAME >> $GITHUB_OUTPUT
id: username
- name: Add user to sandbox list
run: |
Expand Down

0 comments on commit 23807e2

Please sign in to comment.