diff --git a/.github/workflows/filtered_github_webhooks.yml b/.github/workflows/filtered_github_webhooks.yml deleted file mode 100644 index e121dde..0000000 --- a/.github/workflows/filtered_github_webhooks.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Execute Filtered GitHub Webhook - -on: - pull_request: - types: - - opened - - closed - - reopened - -jobs: - notify_if_not_dependabot: - if: ${{ !contains(github.event.pull_request.user.login, 'dependabot') }} - runs-on: ubuntu-latest - steps: - - name: Discord Webhook Action - uses: ./ - with: - webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} - username: GitHub - avatar-url: "https://cdn.discordapp.com/avatars/999680196040982618/df91181b3f1cf0ef1592fbe18e0962d7.webp" - embed-author-name: ${{ github.event.pull_request.user.login }} - embed-author-url: ${{ github.event.pull_request.user.html_url }} - embed-author-icon-url: ${{ github.event.pull_request.user.avatar_url }} - embed-title: '[${{ github.event.repository.full_name }}] Pull request ${{ github.event.action }}: #${{ github.event.number }} ${{ github.event.pull_request.title }}' - embed-description: ${{ github.event.pull_request.body }} - embed-url: ${{ github.event.pull_request.html_url }} diff --git a/jest.config.cjs b/jest.config.cjs index eef7ea8..ce2dfdb 100644 --- a/jest.config.cjs +++ b/jest.config.cjs @@ -6,7 +6,7 @@ module.exports = { '^.+\\.ts$': 'ts-jest' }, transformIgnorePatterns: [ - 'node_modules/(?!(axios)/)' // add this line + 'node_modules/(?!(axios)/)' ], verbose: true }