fix(action): to get job_id only consider jobs that are in_progress #123
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: Check - CI Github Action | |
on: | |
pull_request: | |
branches: [ master ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pr-sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v5 | |
- name: Run Syncoor Test | |
uses: ./ | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
repository: https://github.com/${{ github.repository }}.git | |
git-ref: ${{ github.event.pull_request.head.sha }} | |
log-force-colors: true | |
client-logs: true | |
network: hoodi | |
el-client: reth | |
el-extra-args: >- | |
[ | |
"--full", | |
"--disable-discovery" | |
] | |
cl-client: prysm | |
cl-env-vars: >- | |
[ | |
"SOME_VAR=has-something" | |
] | |
check-interval: 30s | |
public: true | |
log-level: debug | |
run-timeout: 2m # We expect the run to timeout. It will still be marked as success in CI. |