fix(twap): label open orders as unfillable when Safe fallback handler is reset #10819
Workflow file for this run
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: Cloudflare Pages preview mirror | |
| on: | |
| pull_request_target: | |
| types: [ labeled, synchronize, closed ] | |
| issue_comment: | |
| types: [ edited ] | |
| concurrency: | |
| group: cf-pages-preview-mirror-${{ github.event.pull_request.number || github.event.issue.number }} | |
| cancel-in-progress: false | |
| env: | |
| NODE_VERSION: lts/jod | |
| jobs: | |
| mirror: | |
| name: Mirror fork PR for Cloudflare Pages preview | |
| if: github.event_name == 'pull_request_target' || (github.event_name == 'issue_comment' && github.event.issue.pull_request) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Set up node | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| - name: Mirror preview branch | |
| run: node tools/scripts/cf-pages/gh-actions/preview-mirror.mjs | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |