Don't clear the original owner nw var unless they're the one that reconnected #223
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Modified Subtree | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [master] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Fetch complete history | |
clean: false | |
- name: Check For Differences | |
run: ./.github/scripts/check-modified-subtree.sh |