Upstream 2026-08-12 #9
This file contains hidden or 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
| # Renders the diffs and uploads them to filehouse | |
| name: Behavior tree diff | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths: | |
| - "**/*.bt.json" | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| render: | |
| name: Render behavior tree diffs | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Render diffs | |
| uses: tgstation/BehaviorTreeG@main | |
| with: | |
| mode: render | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Upload rendered diffs | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: bt-diff | |
| path: bt-diff-out | |
| if-no-files-found: ignore |