mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 22:55:48 +01:00
* Add PR checks * Update PR workflow * Update PR workflow * Update PR workflow * Add branch name check + doc check * Update PR branch check * Update PR branch check * Update PR branch check
23 lines
574 B
YAML
23 lines
574 B
YAML
name: Check Docs
|
|
on:
|
|
pull_request:
|
|
branches: [ 'feature/*' ]
|
|
|
|
jobs:
|
|
docs:
|
|
name: Website Updated
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- 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."
|