SCALRCORE-29806 fixed test #6
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: Test push master | |
on: | |
push: | |
branches: | |
- SCALRCORE-29806 | |
jobs: | |
test-push-master: | |
name: Update appVersion | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Main | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
touch test-push-master | |
git add test-push-master | |
git commit -m "test-push-master" | |
git push -u origin master | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |