Skip to content

Commit 37b7e2a

Browse files
authored
Merge pull request #787 from gradle/erichaagdev/remove-auto-dev-releases
Automatic development releases are removed
2 parents c94c1dd + 32bb3e0 commit 37b7e2a

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

Diff for: .github/workflows/cross-platform-testing-build-from-source.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Run Cross-Platform Tests (Build From Source)
22

3-
on: [ workflow_dispatch ]
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
48

59
jobs:
610
build:

Diff for: .github/workflows/development-release.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
name: Create Development Release
22

33
on:
4-
push:
5-
branches:
6-
- main
74
workflow_dispatch:
5+
inputs:
6+
confirmation:
7+
description: Enter the confirmation phrase 'DEVELOPMENT' (without quotes) if you are sure you want to trigger a development release.
8+
required: true
89

910
jobs:
1011
development_release:
12+
if: github.event.inputs.confirmation == 'DEVELOPMENT'
1113
name: Release
1214
runs-on: ubuntu-latest
1315
steps:

0 commit comments

Comments
 (0)