mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 22:55:48 +01:00
* chore: remove useless files * chore: fix check path * chore: add workflow to auto push to crowdin after website update * fix: fix workflow config
25 lines
648 B
YAML
25 lines
648 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: |
|
|
website/**/*.mdx
|
|
website/**/*.md
|
|
|
|
- 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."
|