We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3d8257 commit 6195066Copy full SHA for 6195066
.github/workflows/quality-check.yml
@@ -11,7 +11,16 @@ on:
11
types: [opened, synchronize, reopened]
12
13
jobs:
14
+ should-run:
15
+ runs-on: ubuntu-latest
16
+ outputs:
17
+ should-run-check: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository }}
18
+ steps:
19
+ - run: echo "Checking if workflow should run"
20
+
21
quality-check:
22
+ needs: should-run
23
+ if: needs.should-run.outputs.should-run-check == 'true'
24
runs-on: ubuntu-latest
25
permissions:
26
contents: write
0 commit comments