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.
0 parents commit 2bf0097Copy full SHA for 2bf0097
.github/workflows/mirror.yml
@@ -0,0 +1,25 @@
1
+name: Mirror
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 10 * * *'
6
+ workflow_dispatch:
7
8
+jobs:
9
+ mirror:
10
+ runs-on: ubuntu-latest
11
12
+ permissions:
13
+ contents: write
14
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
19
+ - name: Mirror
20
+ uses: codewurker/gravityforms-plugin-mirror-action@main
21
+ env:
22
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23
+ with:
24
+ license-key: ${{ secrets.GF_LICENSE_KEY }}
25
+ plugin-basename: gravityformsturnstile/turnstile.php
0 commit comments