Fix/add examples #2
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
on: | |
pull_request: | |
types: | |
- closed | |
branches: | |
- main | |
name: increment-tagged-version | |
permissions: | |
contents: write | |
jobs: | |
increment_tag: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: 'main' | |
- name: Fetch Tags | |
run: git fetch --tags origin | |
- name: Increment Tagged Version | |
uses: launchbynttdata/actions-lcaf-increment_tagged_version@v0 |