From 22af9b2af0e3d2c9b9481deeffae4081de2d80cf Mon Sep 17 00:00:00 2001 From: Khuda Dad Nomani <32505158+KhudaDad414@users.noreply.github.com> Date: Tue, 4 Jun 2024 13:54:48 +0100 Subject: [PATCH 1/3] remove cache --- .github/actions/slackify-markdown/action.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions/slackify-markdown/action.yml b/.github/actions/slackify-markdown/action.yml index b5bc7cdb..78fb20d8 100644 --- a/.github/actions/slackify-markdown/action.yml +++ b/.github/actions/slackify-markdown/action.yml @@ -19,7 +19,6 @@ runs: uses: actions/setup-node@v3 with: node-version: 16 - cache: 'npm' cache-dependency-path: '**/package-lock.json' - name: Install slackify-markdown package shell: bash @@ -39,4 +38,4 @@ runs: core.setOutput('text', mrkdwn); } catch (error) { core.setFailed(error.message); - } \ No newline at end of file + } From 31f8357d97b5bda8581aedb9d429737562d50b2a Mon Sep 17 00:00:00 2001 From: Khuda Dad Nomani <32505158+KhudaDad414@users.noreply.github.com> Date: Tue, 4 Jun 2024 13:58:10 +0100 Subject: [PATCH 2/3] remove checkout --- .github/actions/slackify-markdown/action.yml | 2 +- .github/workflows/issues-prs-notifications.yml | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/actions/slackify-markdown/action.yml b/.github/actions/slackify-markdown/action.yml index 78fb20d8..9db9e6bd 100644 --- a/.github/actions/slackify-markdown/action.yml +++ b/.github/actions/slackify-markdown/action.yml @@ -38,4 +38,4 @@ runs: core.setOutput('text', mrkdwn); } catch (error) { core.setFailed(error.message); - } + } \ No newline at end of file diff --git a/.github/workflows/issues-prs-notifications.yml b/.github/workflows/issues-prs-notifications.yml index 78ebe960..b8b20c6b 100644 --- a/.github/workflows/issues-prs-notifications.yml +++ b/.github/workflows/issues-prs-notifications.yml @@ -20,8 +20,6 @@ jobs: name: Notify slack on every new issue runs-on: ubuntu-latest steps: - - name: Checkout repository - uses: actions/checkout@v3 - name: Convert markdown to slack markdown for issue uses: asyncapi/.github/.github/actions/slackify-markdown@master id: issuemarkdown @@ -40,8 +38,6 @@ jobs: name: Notify slack on every new pull request runs-on: ubuntu-latest steps: - - name: Checkout repository - uses: actions/checkout@v3 - name: Convert markdown to slack markdown for pull request uses: asyncapi/.github/.github/actions/slackify-markdown@master id: prmarkdown @@ -60,8 +56,6 @@ jobs: name: Notify slack on every new pull request runs-on: ubuntu-latest steps: - - name: Checkout repository - uses: actions/checkout@v3 - name: Convert markdown to slack markdown for pull request uses: asyncapi/.github/.github/actions/slackify-markdown@master id: discussionmarkdown From 54faed0d3fcb8a81cf214441723c5f17fcd2ddbd Mon Sep 17 00:00:00 2001 From: Khuda Dad Nomani <32505158+KhudaDad414@users.noreply.github.com> Date: Tue, 11 Jun 2024 12:54:51 +0100 Subject: [PATCH 3/3] remove cache-dependency-path --- .github/actions/slackify-markdown/action.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/actions/slackify-markdown/action.yml b/.github/actions/slackify-markdown/action.yml index 9db9e6bd..a1a2b257 100644 --- a/.github/actions/slackify-markdown/action.yml +++ b/.github/actions/slackify-markdown/action.yml @@ -19,7 +19,6 @@ runs: uses: actions/setup-node@v3 with: node-version: 16 - cache-dependency-path: '**/package-lock.json' - name: Install slackify-markdown package shell: bash run: npm install slackify-markdown@4.3.1