|
15 | 15 | workflow_dispatch: |
16 | 16 |
|
17 | 17 | jobs: |
18 | | - wait-for-ci: |
19 | | - runs-on: ubuntu-latest |
20 | | - steps: |
21 | | - - name: Wait for CI workflow to complete |
22 | | - |
23 | | - with: |
24 | | - ref: ${{ github.ref }} |
25 | | - check-name: "Pre-check" |
26 | | - repo-token: ${{ secrets.GITHUB_TOKEN }} |
27 | | - wait-interval: 10 |
28 | | - allowed-conclusions: success,skipped |
29 | | - |
30 | | - - name: Wait for Lint and Type Check |
31 | | - |
32 | | - with: |
33 | | - ref: ${{ github.ref }} |
34 | | - check-name: "Lint and Type Check" |
35 | | - repo-token: ${{ secrets.GITHUB_TOKEN }} |
36 | | - wait-interval: 10 |
37 | | - allowed-conclusions: success,skipped |
38 | | - continue-on-error: false |
39 | | - if: always() |
40 | | - |
41 | | - - name: Wait for CodeQL Analysis |
42 | | - |
43 | | - with: |
44 | | - ref: ${{ github.ref }} |
45 | | - check-name: "CodeQL Analysis" |
46 | | - repo-token: ${{ secrets.GITHUB_TOKEN }} |
47 | | - wait-interval: 10 |
48 | | - allowed-conclusions: success,skipped |
49 | | - continue-on-error: false |
50 | | - if: always() |
| 18 | + # wait-for-ci: |
| 19 | + # runs-on: ubuntu-latest |
| 20 | + # steps: |
| 21 | + # - name: Wait for CI workflow to complete |
| 22 | + |
| 23 | + # with: |
| 24 | + # ref: ${{ github.ref }} |
| 25 | + # check-name: "Pre-check" |
| 26 | + # repo-token: ${{ secrets.GITHUB_TOKEN }} |
| 27 | + # wait-interval: 10 |
| 28 | + # allowed-conclusions: success,skipped |
| 29 | + |
| 30 | + # - name: Wait for Lint and Type Check |
| 31 | + |
| 32 | + # with: |
| 33 | + # ref: ${{ github.ref }} |
| 34 | + # check-name: "Lint and Type Check" |
| 35 | + # repo-token: ${{ secrets.GITHUB_TOKEN }} |
| 36 | + # wait-interval: 10 |
| 37 | + # allowed-conclusions: success,skipped |
| 38 | + # continue-on-error: false |
| 39 | + # if: always() |
| 40 | + |
| 41 | + # - name: Wait for CodeQL Analysis |
| 42 | + |
| 43 | + # with: |
| 44 | + # ref: ${{ github.ref }} |
| 45 | + # check-name: "CodeQL Analysis" |
| 46 | + # repo-token: ${{ secrets.GITHUB_TOKEN }} |
| 47 | + # wait-interval: 10 |
| 48 | + # allowed-conclusions: success,skipped |
| 49 | + # continue-on-error: false |
| 50 | + # if: always() |
51 | 51 |
|
52 | 52 | buildLinux: |
53 | | - needs: wait-for-ci |
| 53 | + # needs: wait-for-ci |
54 | 54 | runs-on: ubuntu-22.04 |
55 | 55 | steps: |
56 | 56 | - uses: actions/checkout@v4 |
|
0 commit comments