Skip to content

Added debug message for when user gets the member role #6

Added debug message for when user gets the member role

Added debug message for when user gets the member role #6

Workflow file for this run

name: Bump version
on:
pull_request:
types:
- closed
branches:
- main
jobs:
if_merged:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
fetch-depth: '0'
- name: Bump version and push tag
id: tag_version
uses: anothrNick/github-tag-action@1.70.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
PRERELEASE: false
INITIAL_VERSION: 3.20.0
- name: Create GitHub Release
uses: softprops/action-gh-release@v2.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag_version.outputs.new_tag }}
generate_release_notes: true
prerelease: false