We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43bd322 commit cbc5e9eCopy full SHA for cbc5e9e
.github/workflows/docs-preview-delete.yml
@@ -0,0 +1,16 @@
1
+name: Docs preview delete
2
+
3
+on:
4
+ repository_dispatch:
5
+ types: [docs-preview-delete]
6
7
+jobs:
8
+ Sync:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ with:
13
+ token: ${{ secrets.GH_TOKEN }}
14
15
+ - name: Delete branch
16
+ run: git push origin :sync/${{ github.event.client_payload.package }}/${{ github.event.client_payload.owner }}/${{ github.event.client_payload.branch }}
0 commit comments