Skip to content

Add Copilot CI/CD workflow #1

Add Copilot CI/CD workflow

Add Copilot CI/CD workflow #1

Workflow file for this run

name: Enable Copilot
on:
push:
branches:
- main
- master
jobs:
enable-copilot:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Enable Copilot
run: |
mkdir -p .github
echo "copilot:
enabled: true

Check failure on line 20 in .github/workflows/copilot-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/copilot-ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
languages:
- python
- javascript
- go
ide:
- vscode
- jetbrains" > .github/copilot.yml
git add .github/copilot.yml
git commit -m "Auto-enable Copilot"
git push