Skip to content

Commit

Permalink
comment out unused action
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksim Minko committed May 28, 2024
1 parent 656501e commit bc8d46a
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/auto-review-comment.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Auto Review Comment
# name: Auto Review Comment

# on:
# workflow_run:
Expand All @@ -7,28 +7,28 @@ name: Auto Review Comment
# types:
# - completed

permissions:
pull-requests: write
# permissions:
# pull-requests: write

jobs:
auto-review:
runs-on: ubuntu-latest
# jobs:
# auto-review:
# runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download Diff Artifact
uses: actions/download-artifact@v4
with:
name: pr-diff
path: pr_diff/
repository: ${{ github.repository_owner }}/${{ github.event.repository.name }}
run-id: ${{ github.event.workflow_run.id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Download Diff Artifact
# uses: actions/download-artifact@v4
# with:
# name: pr-diff
# path: pr_diff/
# repository: ${{ github.repository_owner }}/${{ github.event.repository.name }}
# run-id: ${{ github.event.workflow_run.id }}
# github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Analyze changes
uses: ./
id: auto-review-action
with:
token: ${{ secrets.GITHUB_TOKEN }}
datapath: docs/data.yml
# - name: Analyze changes
# uses: ./
# id: auto-review-action
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# datapath: docs/data.yml

0 comments on commit bc8d46a

Please sign in to comment.