Adds closedby
to dialog interface (#12728)
#1
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 workflow runs when changes to examples are pushed to main. | |
# It calls a build hook on Netlify that will redeploy preview.astro.new with the latest changes. | |
name: Redeploy preview.astro.new | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'examples/**' | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Send a POST request to Netlify to rebuild preview.astro.new | |
run: 'curl -X POST -d {} ${{ env.BUILD_HOOK }}' | |
env: | |
BUILD_HOOK: ${{ secrets.NETLIFY_PREVIEWS_BUILD_HOOK }} |