mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
* Add changelog. Fix zoom docs. Add Info.dev.plist info * Update build assets README.md * Update changelog * actions/checkout@v2 => v3 * Docs
24 lines
620 B
YAML
24 lines
620 B
YAML
name: Check Docs
|
|
on:
|
|
pull_request:
|
|
branches: [ 'feature/*' ]
|
|
|
|
jobs:
|
|
docs:
|
|
name: Website Updated
|
|
if: github.repository == 'wailsapp/wails'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Verify Changed files
|
|
uses: tj-actions/verify-changed-files@v11.1
|
|
id: verify-changed-files
|
|
with:
|
|
files: |
|
|
v2/website/*.mdx
|
|
|
|
- name: Run step only when files change.
|
|
if: steps.verify-changed-files.outputs.files_changed != 'true'
|
|
run: |
|
|
echo "Feature branch does not contain any changes to the website."
|