Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
self-hosted-runner:
labels:
# Stops incorrect warning of android-large-runner being used
- android-large-runner
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
- name: Decode secret
env:
FLANK: ${{ secrets.FLANK }}
run: echo $FLANK > flank.json
run: echo "$FLANK" > flank.json

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
if: |
failure() &&
steps.check-alignment.outcome == 'success'
run: cat build/fladle/fladleResults/HtmlErrorReport.html | cut -d\` -f2 >> results.json
run: cut -d\` -f2 < build/fladle/fladleResults/HtmlErrorReport.html >> results.json

- name: Print failure report
if: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/external-css-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Decode secret
env:
FLANK: ${{ secrets.FLANK }}
run: echo $FLANK > flank.json
run: echo "$FLANK" > flank.json

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
Expand All @@ -66,7 +66,7 @@ jobs:

- name: Generate json file with failures
if: ${{ failure() }}
run: cat build/fladle/fladleResults/HtmlErrorReport.html | cut -d\` -f2 >> results.json
run: cut -d\` -f2 < build/fladle/fladleResults/HtmlErrorReport.html >> results.json

- name: Print failure report
if: ${{ failure() }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/external-ref-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
- name: Decode secret
env:
FLANK: ${{ secrets.FLANK }}
run: echo $FLANK > flank.json
run: echo "$FLANK" > flank.json

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
Expand All @@ -106,7 +106,7 @@ jobs:

- name: Generate json file with failures
if: ${{ failure() }}
run: cat build/fladle/fladleResults/HtmlErrorReport.html | cut -d\` -f2 >> results.json
run: cut -d\` -f2 < build/fladle/fladleResults/HtmlErrorReport.html >> results.json

- name: Print failure report
if: ${{ failure() }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
- name: Decode secret
env:
FLANK: ${{ secrets.FLANK }}
run: echo $FLANK > flank.json
run: echo "$FLANK" > flank.json

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
Expand All @@ -149,7 +149,7 @@ jobs:

- name: Generate json file with failures
if: ${{ failure() }}
run: cat build/fladle/fladleResults/HtmlErrorReport.html | cut -d\` -f2 >> results.json
run: cut -d\` -f2 < build/fladle/fladleResults/HtmlErrorReport.html >> results.json

- name: Print failure report
if: ${{ failure() }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/privacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Decode secret
env:
FLANK: ${{ secrets.FLANK }}
run: echo $FLANK > flank.json
run: echo "$FLANK" > flank.json

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
Expand All @@ -66,7 +66,7 @@ jobs:

- name: Generate json file with failures
if: ${{ failure() }}
run: cat build/fladle/fladleResults/HtmlErrorReport.html | cut -d\` -f2 >> results.json
run: cut -d\` -f2 < build/fladle/fladleResults/HtmlErrorReport.html >> results.json

- name: Print failure report
if: ${{ failure() }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/validate_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ jobs:
github_token: ${{ secrets.GT_DAXMOBILE }}
reporter: github-pr-review
level: warning
fail_level: warning
fail_level: warning
actionlint_flags: --config-file .github/actionlint.yaml
Loading