temp #23
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: temp | |
on: [push,pull_request,workflow_dispatch] | |
jobs: | |
temp: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- run: | | |
echo "testing" >> temp | |
git config --global user.name "Fabian42" | |
git config --global user.email "[email protected]" | |
git add . | |
git commit -m "temp" | |
git push |