Remove an unused workflow

This commit is contained in:
Claudia Meadows 2024-09-24 16:39:42 -07:00
parent 24b1ed5175
commit 9d7cf4d474
No known key found for this signature in database
GPG key ID: C86B594396786760

View file

@ -1,23 +0,0 @@
name: Post comment
on:
workflow_call:
inputs:
url:
type: string
required: true
message:
type: string
required: true
jobs:
notify:
runs-on: ubuntu-latest
steps:
- run: |
export GITHUB_TOKEN="$GH_TOKEN_SECRET"
gh issue comment "$ISSUE_URL" --body "$MESSAGE"
env:
ISSUE_URL: ${{ inputs.url }}
MESSAGE: ${{ inputs.message }}
GH_TOKEN_SECRET: ${{ github.token }}