Bump ext/Tracy from 5d542dc
to ee06542
#50
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: "Pull request" | ||
on: | ||
pull_request: | ||
types: [assigned, opened, synchronize, reopened] | ||
paths-ignore: | ||
- '**.md' | ||
jobs: | ||
bindgen-job: | ||
name: "Bindgen" | ||
uses: "./.github/workflows/bindgen.yml" | ||
build-job: | ||
name: "Build" | ||
needs: [bindgen-job] | ||
uses: "./.github/workflows/build.yml" | ||
commit-job: | ||
Check failure on line 20 in .github/workflows/pull-request.yml GitHub Actions / Pull requestInvalid workflow file
|
||
name: "Commit" | ||
needs: [bindgen-job, build-job] | ||
if: github.actor == 'dependabot[bot]' | ||
uses: "./.github/workflows/commit.yml" |