-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (57 loc) · 1.75 KB
/
on-push-main.yml
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
56
57
58
59
60
61
62
name: Release
on:
pull_request:
branches:
- main
types: [closed]
permissions:
contents: write
pull-requests: write
env:
PROJECT_NAME: ${{ github.event.repository.name }}
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
jobs:
get-next-version:
name: Determine Next Version
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.merged }}
outputs:
next-version: ${{ steps.semver.outputs.next || steps.semver.outputs.current }}
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get next version
id: semver
uses: ietf-tools/semver-action@main
with:
token: ${{ github.token }}
patchList: fix, refactor, misc
noVersionBumpBehavior: current
noNewCommitBehavior: current
release-please:
name: Create a Release and a version tag
needs: [get-next-version]
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.merged }}
outputs:
image-tag: ${{ steps.release-please.outputs.tag_name }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Release please
uses: google-github-actions/release-please-action@v3
id: release-please
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: php
package-name: plugin-woocommerce
default-branch: main
changelog-types: |
[
{"type":"feat","section":"Features","hidden":false},
{"type":"fix","section":"Bug Fixes","hidden":false},
{"type":"refactor","section":"Refactoring","hidden":false},
{"type":"misc","section":"Miscellaneous","hidden":false}
]