Skip to content

replayapi SHA

replayapi SHA #72

# Workflow that runs regression tests against our solved test bugs
name: Run Replay Regression Tests
# The jobs in this workflow are required, so they must run at all times
# * Always run on "main"
# * Always run on PRs
on:
push:
branches:
- main
pull_request:
# If triggered by a PR, it will be in the same group. However, each commit on main will be in its own unique group
concurrency:
group: ${{ github.workflow }}-${{ (github.head_ref && github.ref) || github.run_id }}
cancel-in-progress: true
jobs:
check-for-regressions:
name: Check 10609
uses: actions/github-script@v7

Check failure on line 21 in .github/workflows/replay-regress-check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/replay-regress-check.yml

Invalid workflow file

invalid value workflow reference: references to workflows must be rooted in '.github/workflows'
if: always()
with:
script: |
github.rest.actions.createWorkflowDispatch({
context.repo.owner,
"bench-devtools-10609",
"regress-check.yml",
"main",
});