Bump @wikimedia/codex from 1.14.0 to 1.15.0 #739
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
name: Comment deploy URL to PR | |
on: | |
pull_request: | |
types: [opened] | |
jobs: | |
comment-on-pr: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
name: Comment deploy URL to PR | |
steps: | |
- name: Get branch hash | |
id: get_hash | |
# This hash ⬇ is also calculated and used in the deploy workflow in demo.yaml to push the dist/ to Netlify | |
run: echo "::set-output name=hash::$(echo '${{ github.ref }}' | shasum | awk '{print substr($1,0,36)}')" | |
- name: Comment on PR | |
uses: thollander/[email protected] | |
with: | |
message: "<https://${{ steps.get_hash.outputs.hash }}--new-lexeme-special-page.netlify.app>" |