Skip to content

Commit

Permalink
Add weekly "Tested up to" CI check
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecRust committed Apr 14, 2024
1 parent 9347896 commit 2e9aa6e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/weekly-tut-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Weekly "Tested up to" check

on:
schedule:
- cron: '0 0 * * 0' # Every Sunday at midnight
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
tut-check:
name: Check for new "Tested up to" version
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run wp-tut-updater-action
uses: AlecRust/wp-tut-updater-action@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file-paths: .cliff/cliff-readme-txt.toml

0 comments on commit 2e9aa6e

Please sign in to comment.