fix(lengow): [ECP-109] Change lengow's logo for the new logo #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} | |
] |