summaryrefslogtreecommitdiffstats
path: root/.github/workflows/copilot.yml
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-01-21 17:27:14 +0100
committerGitHub <noreply@github.com>2024-01-21 17:27:14 +0100
commit556373b724d76998994147c6ee7b67d3ce8f85b7 (patch)
treec2b5be1087c524d7ee6688fa0d2bafcb31c3220d /.github/workflows/copilot.yml
parentMerge pull request #1490 from hlohaus/neww (diff)
parentSave pr number (diff)
downloadgpt4free-556373b724d76998994147c6ee7b67d3ce8f85b7.tar
gpt4free-556373b724d76998994147c6ee7b67d3ce8f85b7.tar.gz
gpt4free-556373b724d76998994147c6ee7b67d3ce8f85b7.tar.bz2
gpt4free-556373b724d76998994147c6ee7b67d3ce8f85b7.tar.lz
gpt4free-556373b724d76998994147c6ee7b67d3ce8f85b7.tar.xz
gpt4free-556373b724d76998994147c6ee7b67d3ce8f85b7.tar.zst
gpt4free-556373b724d76998994147c6ee7b67d3ce8f85b7.zip
Diffstat (limited to '.github/workflows/copilot.yml')
-rw-r--r--.github/workflows/copilot.yml32
1 files changed, 27 insertions, 5 deletions
diff --git a/.github/workflows/copilot.yml b/.github/workflows/copilot.yml
index a43ee19a..63d3e2ba 100644
--- a/.github/workflows/copilot.yml
+++ b/.github/workflows/copilot.yml
@@ -13,19 +13,41 @@ jobs:
contents: read
pull-requests: write
steps:
+ - name: 'Download artifact'
+ uses: actions/github-script@v6
+ with:
+ script: |
+ let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ run_id: context.payload.workflow_run.id,
+ });
+ let matchArtifact = allArtifacts.data.artifacts.filter((artifact) => {
+ return artifact.name == "pr_number"
+ })[0];
+ let download = await github.rest.actions.downloadArtifact({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ artifact_id: matchArtifact.id,
+ archive_format: 'zip',
+ });
+ let fs = require('fs');
+ fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/pr_number.zip`, Buffer.from(download.data));
+ - name: 'Unzip artifact'
+ run: unzip pr_number.zip
- name: Checkout Repo
uses: actions/checkout@v3
-
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
cache: 'pip'
- name: Install Requirements
- run: pip install -r requirements.txt
- - name: Install PyGithub
- run: pip install PyGithub
+ run: |
+ pip install -r requirements.txt
+ pip install PyGithub
- name: AI Code Review
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: env
+ GITHUB_REPOSITORY: ${{ github.repository }}
+ run: python -m etc.tool.copilot