This repository was archived by the owner on May 1, 2025. It is now read-only.
Mark Wikit as deprecated in docs #357
Workflow file for this run
This file contains hidden or 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
| name: Comment deploy URL to PR | |
| on: | |
| pull_request: | |
| types: [opened] | |
| jobs: | |
| comment-on-pr: | |
| runs-on: ubuntu-latest | |
| name: Comment deploy URL to PR | |
| steps: | |
| - name: Get branch hash | |
| run: echo "PR_HASH=$(echo '${{ github.ref }}' | shasum | awk '{print $1}')" >> $GITHUB_ENV | |
| - name: Comment on PR | |
| uses: thollander/[email protected] | |
| with: | |
| message: "<https://${{ env.PR_HASH }}--wmde-wikit.netlify.app>" | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |