File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed
Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ VERSION_BUMP :
7+ description : ' The version bump'
8+ type : choice
9+ options :
10+ - major
11+ - minor
12+ - patch
13+ default : minor
14+ required : true
15+
16+ jobs :
17+ release :
18+ uses : uphold/.github/.github/workflows/reusable-release.yaml@v1
19+ secrets : inherit
20+ with :
21+ package_manager : yarn
22+ version_bump : ${{ github.event.inputs.VERSION_BUMP }}
Original file line number Diff line number Diff line change 1+ name : Standards Check
2+
3+ on :
4+ pull_request :
5+ types : [opened, synchronize]
6+ branches-ignore :
7+ - ' dependabot/**'
8+
9+ jobs :
10+ run-checks :
11+ runs-on : ubuntu-2g-1cpu-arm64
12+
13+ steps :
14+ - uses : uphold/standards-check-action@v1
15+ with :
16+ auto-labelling : true
You can’t perform that action at this time.
0 commit comments