Skip to content

Commit

Permalink
Iteration 3.3 - trying to commit changes to codium-proxy.
Browse files Browse the repository at this point in the history
  • Loading branch information
yoavo-codium committed Nov 8, 2024
1 parent fb5e47a commit 06b386f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,17 @@ jobs:
CODIUM_PROXY_TOKEN: ${{ secrets.CODIUM_PROXY_TOKEN }}
run: |
git push -u origin update-docs-context-branch
- name: Create pull request
uses: actions/github-script@v6
with:
script: |
const { data: pullRequest } = await github.rest.pulls.create({
owner: 'Codium-ai',
repo: 'codium-proxy',
title: 'Automated update to docs_context.txt',
head: 'update-docs-context-branch',
base: 'main', # Adjust this if the target branch is different
body: 'This is an automated pull request to update docs_context.txt',
});
core.setOutput('pull_request_url', pullRequest.html_url);

0 comments on commit 06b386f

Please sign in to comment.