From 9d7cf4d474a68bb83781eab0c8ddf903e1f7f50b Mon Sep 17 00:00:00 2001 From: Claudia Meadows Date: Tue, 24 Sep 2024 16:39:42 -0700 Subject: [PATCH] Remove an unused workflow --- .github/workflows/_post-comment.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/_post-comment.yml diff --git a/.github/workflows/_post-comment.yml b/.github/workflows/_post-comment.yml deleted file mode 100644 index 103dd569..00000000 --- a/.github/workflows/_post-comment.yml +++ /dev/null @@ -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 }}