feat: new point query #161
Workflow file for this run
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: Cloudflare Pages Delete | |
on: | |
pull_request: | |
types: | |
- closed | |
branches: | |
- main | |
jobs: | |
deploy: | |
permissions: | |
actions: read # Only required for private GitHub Repo | |
contents: read | |
deployments: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: 'Checkout Github Action' | |
uses: actions/checkout@v4 | |
- name: 'Deploy deletion from Cloudflare Pages' | |
uses: andykenward/github-actions-cloudflare-pages/delete@v2.3.1 | |
with: | |
cloudflare-api-token: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} |