Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 0 additions & 37 deletions .github/workflows/backport.yml

This file was deleted.

35 changes: 0 additions & 35 deletions .github/workflows/build-wheels.yml

This file was deleted.

239 changes: 0 additions & 239 deletions .github/workflows/build_and_test.yml

This file was deleted.

45 changes: 0 additions & 45 deletions .github/workflows/codspeed.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/poc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Comment on PR

on:
pull_request:
types: [opened, synchronize, reopened]

permissions:
contents: read
pull-requests: write
issues: write

jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Add PR comment
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ github.event.pull_request.number }}
REPO: ${{ github.repository }}
run: |
gh api \
"repos/$REPO/issues/$PR_NUMBER/comments" \
-f body='Image diff workflow ran successfully.'
Loading
Loading