-
Notifications
You must be signed in to change notification settings - Fork 3
55 lines (46 loc) · 1.36 KB
/
version.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: version
on:
pull_request:
types:
- closed
branches:
- dev
permissions:
contents: write
pull-requests: write
jobs:
version_and_tag:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && !contains(github.event.pull_request.title, 'chore(version)')
steps:
- name: Git Checkout
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
fetch-depth: 0
- name: Setup Git User
uses: fregante/setup-git-user@v2
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: "3.10.2"
cache: true
- name: Setup Melos
uses: bluefireteam/melos-action@v3
with:
melos-version: "3.2.0"
run-bootstrap: false
- name: Create git tag based on version
# only consider changes from the commit mentioned below
run: melos version --all --yes
- name: Push tag
run: git push --tags
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Pull Request on updated changelog and pubspec file.
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.PAT }}
title: "chore(version): bump version and update changelog"
base: dev