Skip to content

Commit

Permalink
chore: add comment diffs action
Browse files Browse the repository at this point in the history
  • Loading branch information
colethienes committed Mar 16, 2024
1 parent 4d7b458 commit 2efde9a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Comment diffs
on:
pull_request:
branches:
- main

jobs:
comment-diffs:
name: comment diffs
runs-on: ubuntu-latest
steps:
- uses: infro-io/comment-diffs-action@v1
with:
repo: ${{ github.repository }}
revision: ${{ github.sha }}
pull-number: ${{ github.event.number }}
config: |
deployers:
- type: argocd
name: my-argo-cluster
endpoint: ${{ secrets.ARGOCD_ENDPOINT }}
authtoken: ${{ secrets.ARGOCD_TOKEN }}
vcs:
type: github
authtoken: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2efde9a

Please sign in to comment.