From 83da829ff5631da14ebea3c2e01b0880e422e04e Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 3 Oct 2021 00:09:24 +0100 Subject: [PATCH] :construction_worker: Fix infinite loop in actions --- .github/workflows/mind-your-language.yml | 14 ++++---------- .github/workflows/unfurl-links.yml | 6 +++--- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/.github/workflows/mind-your-language.yml b/.github/workflows/mind-your-language.yml index fd97fbc3..ea5a1094 100644 --- a/.github/workflows/mind-your-language.yml +++ b/.github/workflows/mind-your-language.yml @@ -2,17 +2,11 @@ name: 🎯 Mind your language on: issues: - types: - - opened - - edited + types: [opened] issue_comment: - types: - - created - - edited - pull_request_review_comment: - types: - - created - - edited + types: [created] + pull_request: + types: [opened] jobs: echo_issue_comment: runs-on: ubuntu-latest diff --git a/.github/workflows/unfurl-links.yml b/.github/workflows/unfurl-links.yml index 95a8feee..69d4c6a6 100644 --- a/.github/workflows/unfurl-links.yml +++ b/.github/workflows/unfurl-links.yml @@ -2,11 +2,11 @@ name: 🎯 Unfurl Links on: issues: - types: [opened, edited] + types: [opened] issue_comment: - types: [created, edited] + types: [created] pull_request: - types: [opened, edited] + types: [opened] jobs: run: runs-on: ubuntu-latest