Add git-ref script
#64
This file contains hidden or 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 GitHub action | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| install-scripts: | |
| name: Run GitHub Action | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: jonpugh/goatscripts@main | |
| with: | |
| path: .custom/goatscripts | |
| - run: run-with-summary ls -la .custom/goatscripts | |
| env: | |
| SUCCESS: "goatscripts directory" | |
| SUMMARY: | | |
| This is a test of the goatscripts github action. The action simply installs the scripts and sets the path so you can use them immediately. | |
| Use this file as an example to install and use the scripts. | |
| - run: run-with-summary which run-with-summary | |
| env: | |
| SUCCESS: "run-with-summary is installed." | |
| DEBUG: yes | |
| - run: run-with-summary curl https://api.github.com/ | |
| env: | |
| SUCCESS: GitHub API is active | |
| ERROR: GitHub API unavailable! | |
| test-scripts: | |
| name: Example summary | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: jonpugh/goatscripts@main | |
| - run: run-with-summary ls -la .goatscripts |