Check if large support data files were installed #68
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: "Pull Request Closed" | |
on: | |
pull_request: | |
types: | |
- closed | |
branches: | |
- develop | |
jobs: | |
if_merged: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pull repo | |
uses: actions/checkout@v4 | |
with: | |
ref: develop | |
fetch-depth: 0 | |
token: ${{ secrets.BOT_ACCESS_TOKEN }} | |
- name: Bump version | |
run: ./.github/workflows/version-bumper.sh ./docs/source/bskVersion.txt | |
- name: Commit and push | |
run: | | |
git config user.name "AVSlabBot" | |
git config user.email "[email protected]" | |
git commit -a -m "[AUTO] Bump version number" | |
git push |