From 9fc6654a39a19386b0125e8ad6e74ebac3c9c447 Mon Sep 17 00:00:00 2001 From: Abhijit Kiran Valluri Date: Sun, 27 Sep 2020 14:32:45 +0100 Subject: [PATCH] [skip ci] fix github actions (#167) --- .github/workflows/android-build-pr.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/android-build-pr.yml b/.github/workflows/android-build-pr.yml index 4230a6d43..ee7ee4497 100644 --- a/.github/workflows/android-build-pr.yml +++ b/.github/workflows/android-build-pr.yml @@ -6,7 +6,7 @@ on: jobs: run-build: runs-on: ubuntu-latest - if: "! contains(toJSON(github.event.title), '[skip ci]')" + if: "! contains(toJSON(github.event.pull_request.title), '[skip ci]')" steps: - name: Checkout repository uses: actions/checkout@v2 @@ -49,7 +49,7 @@ jobs: message: | ### Download the built apks You can download the apks built by Github actions after the CI checks pass. - Please go to the checks page for this PR to find the zipped apk files under the artifacts drop-down, as seen in the example screenshot below. + Please go to the checks page for this PR to find the zipped apk files under the artifacts drop-down, as seen in the example screenshot below. repo-token: ${{ secrets.GITHUB_TOKEN }} @@ -57,7 +57,7 @@ jobs: run-testDebug: runs-on: ubuntu-latest - if: "! contains(toJSON(github.event.title), '[skip ci]')" + if: "! contains(toJSON(github.event.pull_request.title), '[skip ci]')" steps: - name: Checkout repository uses: actions/checkout@v2 @@ -76,7 +76,7 @@ jobs: run-detekt: runs-on: ubuntu-latest - if: "! contains(toJSON(github.event.title), '[skip ci]')" + if: "! contains(toJSON(github.event.pull_request.title), '[skip ci]')" steps: - name: Checkout repository uses: actions/checkout@v2 @@ -100,7 +100,7 @@ jobs: run-ktlint: runs-on: ubuntu-latest - if: "! contains(toJSON(github.event.title), '[skip ci]')" + if: "! contains(toJSON(github.event.pull_request.title), '[skip ci]')" steps: - name: Checkout repository uses: actions/checkout@v2 @@ -119,7 +119,7 @@ jobs: run-lintDebug: runs-on: ubuntu-latest - if: "! contains(toJSON(github.event.title), '[skip ci]')" + if: "! contains(toJSON(github.event.pull_request.title), '[skip ci]')" steps: - name: Checkout repository uses: actions/checkout@v2