-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cherry Pick commits to fix warnings on GitHub Action (#673)
This collects the changes of the PRs #643, #665 and #666 Bug: T322548 Co-authored-by: Guergana Tzatchkova <[email protected]>
- Loading branch information
Showing
5 changed files
with
29 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,10 +10,9 @@ jobs: | |
name: Comment deploy URL to PR | ||
steps: | ||
- name: Get branch hash | ||
id: get_hash | ||
run: echo "::set-output name=hash::$(echo '${{ github.ref }}' | shasum | awk '{print $1}')" | ||
run: echo "PR_HASH=$(echo '${{ github.ref }}' | shasum | awk '{print $1}')" >> $GITHUB_ENV | ||
- name: Comment on PR | ||
uses: thollander/[email protected] | ||
with: | ||
message: "<https://${{ steps.get_hash.outputs.hash }}--wmde-wikit.netlify.app>" | ||
message: "<https://${{ env.PR_HASH }}--wmde-wikit.netlify.app>" | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters