Place valence and bevy specific stuff in valence_anvil behind feature flags #8
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 Depgraph | |
on: | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
permissions: | |
# Needed in order to leave comments on pull requests. | |
pull-requests: 'write' | |
jobs: | |
check-depgraph: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Actions Repository | |
uses: actions/checkout@v3 | |
- name: Install cargo-depgraph | |
uses: baptiste0928/[email protected] | |
with: | |
crate: cargo-depgraph | |
- name: Install graphviz | |
run: sudo apt update && sudo apt install -y graphviz | |
- name: Generate new depgraph | |
run: cargo depgraph --workspace-only | tred | dot -Tsvg -o assets/depgraph.svg | |
- name: Check depgraph diff | |
run: git diff --exit-code assets/depgraph.svg > assets/depgraph.patch | |
- name: Create comment file | |
if: ${{ failure() }} | |
run: | | |
echo "It looks like this pull request changed the workspace structure. \ | |
Please replace \`assets/depgraph.svg\` with the following text: | |
<details> | |
<summary>depgraph.svg (Don't forget the trailing newline)</summary> | |
\`\`\`html | |
$(cat assets/depgraph.svg) | |
\`\`\` | |
</details> | |
For reference, here is a diff against the old \`depgraph.svg\`: | |
<details> | |
\`\`\`patch | |
$(cat assets/depgraph.patch) | |
\`\`\` | |
</details>" >> pr-comment.txt | |
- name: Create pull request comment | |
uses: marocchino/sticky-pull-request-comment@v2 | |
if: ${{ failure() }} | |
with: | |
recreate: true | |
header: depgraph | |
path: pr-comment.txt |