Skip to content

Commit add5667

Browse files
authored
ci: update release workflows
1 parent 9edd155 commit add5667

File tree

7 files changed

+30
-63
lines changed

7 files changed

+30
-63
lines changed

.github/workflows/foss-release.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/gplay-release.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: PR
22

33
on:
44
pull_request:
5-
branches: [ master ]
5+
branches: [ main ]
66

77
jobs:
88
call-pr-workflow:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Prepare Release PR
2+
3+
on:
4+
repository_dispatch:
5+
types: [prepare-release]
6+
workflow_dispatch:
7+
8+
jobs:
9+
call-release-pr:
10+
uses: FossifyOrg/.github/.github/workflows/prepare-release-pr.yml@main
11+
secrets: inherit

.github/workflows/release-commenter.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
paths:
7+
- ".fossify/release-marker.txt"
8+
9+
jobs:
10+
call-release-workflow:
11+
name: Release
12+
uses: FossifyOrg/.github/.github/workflows/release.yml@main
13+
with:
14+
track: ${{ vars.GPLAY_TRACK || 'beta' }}
15+
rollout: ${{ vars.GPLAY_ROLLOUT || '0.05' }}
16+
validate_only: ${{ vars.GPLAY_DRY_RUN == 'true' }}
17+
secrets: inherit

.github/workflows/testing-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Testing build (on PR)
22

33
on:
44
pull_request:
5-
branches: [ master ]
5+
branches: [ main ]
66
types: [ labeled, opened, synchronize, reopened ]
77

88
jobs:

0 commit comments

Comments
 (0)