🌈 style:Add text area function #170
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: Increment theme version value | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'web/assets/theme_version.txt' | |
- '.github/**' | |
- 'assets/**' | |
- '**.md' | |
- '.gitignore' | |
jobs: | |
test: | |
name: Increment theme version value | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
token: ${{ secrets.PAT }} | |
- name: Increment value | |
uses: yoichiro/gh-action-increment-value@main | |
with: | |
target_directory: 'web/assets' | |
target_file: 'theme_version.txt' | |
prefix: '** ' | |
suffix: ' **' | |
commit_message: 'Theme version updated to v0.1.63-dev.' |