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 24c2e51 commit 36d7f86Copy full SHA for 36d7f86
.github/workflows/unfied-release-manager.yml
@@ -0,0 +1,29 @@
1
+name: Unified Release Manager Checks
2
+
3
+on:
4
+ pull_request:
5
+ paths-ignore:
6
+ - 'README.md'
7
+ push:
8
9
10
+ branches:
11
+ - main
12
+ - master
13
+ - '[0-9]+.[0-9]+'
14
+ - '[0-9]+.x'
15
16
+jobs:
17
+ assemble:
18
+ name: Assemble
19
+ runs-on: ubuntu-latest
20
+ strategy:
21
+ fail-fast: false
22
+ matrix:
23
+ stack_version: ['8.0.0-SNAPSHOT']
24
25
+ steps:
26
+ - name: Checkout
27
+ uses: actions/checkout@v2
28
+ - run: "./.ci/make.sh assemble ${{ matrix.stack_version }}"
29
+ name: Assemble ${{ matrix.stack_version }}
0 commit comments