diff --git a/.github/workflows/deployments.yml b/.github/workflows/deployments.yml deleted file mode 100644 index f28788a..0000000 --- a/.github/workflows/deployments.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Deployments - -on: - pull_request: - types: [opened, reopened] - -permissions: - pull-requests: write - -jobs: - deploymentmessage: - name: Send deployment links - runs-on: ubuntu-latest - steps: - - name: Deployment Queued Comment - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - script: | - github.rest.issues.createComment({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: `Thank you for submitting your Pull Request, the following links will become available for preview shortly:\n - - [expressive-code-twoslash Docs](https://${context.payload.pull_request.number}-twoslash.matthiesen.dev) - ` - })