Skip to content

Commit

Permalink
Add Copilot CI/CD workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
allyelvis committed Dec 28, 2024
1 parent 743308c commit 46363d6
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/copilot-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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
languages:
- python
- javascript
- go
ide:
- vscode
- jetbrains" > .github/copilot.yml

git add .github/copilot.yml
git commit -m "Auto-enable Copilot"
git push

0 comments on commit 46363d6

Please sign in to comment.