Skip to content

Commit 2e9aa6e

Browse files
committed
Add weekly "Tested up to" CI check
1 parent 9347896 commit 2e9aa6e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Weekly "Tested up to" check
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * 0' # Every Sunday at midnight
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
tut-check:
14+
name: Check for new "Tested up to" version
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v4
19+
20+
- name: Run wp-tut-updater-action
21+
uses: AlecRust/wp-tut-updater-action@main
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
with:
25+
file-paths: .cliff/cliff-readme-txt.toml

0 commit comments

Comments
 (0)