Add CacheWarmupExecutor
task to execute incoming txs in order to warm up the cache.
#353
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
name: "Check Changelog" | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
paths: | |
- "examples/demo-rollup/**/*.rs" | |
- "examples/demo-rollup/**/*.toml" | |
- "!examples/demo-rollup/sov-soak-testing/**" | |
jobs: | |
check-changelog: | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-changelog') }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check for demo-rollup changes requiring changelog | |
run: | | |
PR_NUMBER=$(echo $GITHUB_REF | sed 's/.*\/pull\/\([0-9]*\).*/\1/') | |
if ! grep -q "#${PR_NUMBER}" CHANGELOG.md; then | |
echo "Error: Demo rollup was changed but no changelog entry found for PR #${PR_NUMBER}." | |
echo "If you've already checked in a changelog entry, make sure it contains the literal string `#${PR_NUMBER}`." | |
exit 1 | |
fi |