Skip to content

Commit

Permalink
.github/workflows/testing.yml: move env.ACT check into run steps
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Janik <[email protected]>
  • Loading branch information
tim-janik committed Jun 30, 2024
1 parent fbbecd1 commit 62d4cae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ jobs:
Ping-IRC:
needs: [FocalAssets, UploadDocs, ArchReplay, FocalClangTidy]
if: ${{ always() && !env.ACT }}
runs-on: ubuntu-latest
steps:
- { uses: actions/[email protected], with: { fetch-depth: 0 } } # Fix actions/checkout#290
Expand All @@ -120,7 +119,7 @@ jobs:
[[ ${{ needs.ArchReplay.result }} =~ success|skipped ]]
[[ ${{ needs.FocalClangTidy.result }} =~ success|skipped ]]
- name: Ping IRC
if: always()
if: ${{ always() && !env.ACT }}
run: |
R='${{ github.repository }}' && R=${R#*/}
B='${{ github.ref }}' && B=${B#refs/heads/}
Expand Down

0 comments on commit 62d4cae

Please sign in to comment.