diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2026-08-14 00:26:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-13 18:26:32 -0400 |
| commit | e77acba9c4fce64cbf1e5a62b45ee2d9814445b1 (patch) | |
| tree | 359bc040faf3551ecfec0b720c7572af657819d3 /.github/workflows | |
| parent | 8e58eea667228a287a2e8f4ebbd979ea58350dd8 (diff) | |
[GHA] Fixup final jobs if conditions (#1889)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60e649783..1cc3321e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -122,7 +122,7 @@ jobs: needs: [build_repo] runs-on: ubuntu-latest # Solution 1 from https://github.com/actions/runner/issues/2566#issuecomment-3053484216 - if: 'always() && ${{ github.repository == ''zeldaret/mm'' }}' + if: ${{ always() && github.repository == 'zeldaret/mm' }} steps: - run: | if [ "${{ needs.build_repo.result }}" != "success" ]; then @@ -133,7 +133,7 @@ jobs: name: Merge BSS fixes runs-on: ubuntu-latest needs: [build_repo] - if: '!cancelled() && ${{ github.repository == ''zeldaret/mm'' }}' # Run even if build_repo fails + if: ${{ !cancelled() && github.repository == 'zeldaret/mm' }} # Run even if build_repo fails steps: - name: Checkout repository uses: actions/checkout@v6 |
