Skip to content

Commit a52f820

Browse files
authored
Create mirror.yml
0 parents  commit a52f820

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/mirror.yml

+25
Original file line numberDiff line numberDiff line change
@@ -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: gravityformsgoogleanalytics/googleanalytics.php

0 commit comments

Comments
 (0)