build(ci): silence GH actions warnings
authorJérôme Benoit <jerome.benoit@sap.com>
Sat, 6 May 2023 22:04:56 +0000 (00:04 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Sat, 6 May 2023 22:04:56 +0000 (00:04 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
.github/workflows/ci.yml
.github/workflows/generate-documentation.yml

index 112e3ac4ff57619c7bae99c4cf72843848c82229..e0ec4013ef16e476beafe92e4be7e61a241797f2 100644 (file)
@@ -52,11 +52,11 @@ jobs:
         run: pnpm test
 
       - name: Coverage Report
-        if: "github.repository == 'poolifier/poolifier' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x'"
+        if: ${{ github.repository == 'poolifier/poolifier' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }}
         run: pnpm coverage
 
       - name: Sonar Code Analysis
-        if: "github.repository == 'poolifier/poolifier' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x'"
+        if: ${{ github.repository == 'poolifier/poolifier' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }}
         uses: sonarsource/sonarcloud-github-action@v1.9.1
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
index 2ba7833ec6290849ea47aeed5b7b3deff1154b7d..d42848746e214001aff823cc4252e183da340959 100644 (file)
@@ -28,7 +28,7 @@ jobs:
           pnpm typedoc
 
       - name: Commit files
-        if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/${{ github.event.repository.default_branch }}'"
+        if: ${{ github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/${{ github.event.repository.default_branch }}' }}
         run: |
           git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
           git config --local user.name "github-actions[bot]"
@@ -36,7 +36,7 @@ jobs:
           git commit -m "chore: generate documentation" -a
 
       - name: Push changes
-        if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/${{ github.event.repository.default_branch }}'"
+        if: ${{ github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/${{ github.event.repository.default_branch }}' }}
         uses: CasperWA/push-protected@v2
         with:
           token: ${{ secrets.GH_TOKEN_PROTECTED }}