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.
2 parents 682c609 + 2b4c7eb commit fa8e9fcCopy full SHA for fa8e9fc
.github/workflows/main-checks.yml
.github/workflows/main.yml
@@ -0,0 +1,24 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: ["main", "v1.x"]
6
+ tags: ["v*.*.*"]
7
+ pull_request:
8
9
10
+permissions:
11
+ contents: read
12
13
+jobs:
14
+ checks:
15
+ uses: ./.github/workflows/shared.yml
16
17
+ all-green:
18
+ if: always()
19
+ needs: [checks]
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
23
+ with:
24
+ jobs: ${{ toJSON(needs) }}
.github/workflows/pull-request-checks.yml
0 commit comments