We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c0158b commit 687314aCopy full SHA for 687314a
1 file changed
.github/workflows/github-actions-are-differences-found.yml
@@ -0,0 +1,20 @@
1
+name: Check that OK files are up to date
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ No-Diffs-In-Ok-Files:
8
+ runs-on: ${{ vars.USE_SELF_HOSTED == 'true' && 'self-hosted' || 'ubuntu-latest' }}
9
+ steps:
10
+ - name: Check out repository code
11
+ uses: actions/checkout@v6
12
+ with:
13
+ fetch-depth: 0
14
+ - name: Check ok files
15
+ run: |
16
+ set +e
17
+ grep --include="*.ok" -Rn "Differences found "
18
+ if [[ "$?" == "0" ]]; then
19
+ exit 1
20
+ fi
0 commit comments