From c515ac024136fa6e73becac532e4a5af3847626d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiana=20=F0=9F=9A=80=20=20Campanari?= <113218619+FabianaCampanari@users.noreply.github.com> Date: Sun, 5 Jan 2025 18:19:56 -0300 Subject: [PATCH] Delete .github/workflows/action-rest-api.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabiana 🚀 Campanari <113218619+FabianaCampanari@users.noreply.github.com> --- .github/workflows/action-rest-api.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/action-rest-api.yml diff --git a/.github/workflows/action-rest-api.yml b/.github/workflows/action-rest-api.yml deleted file mode 100644 index a30c3dd..0000000 --- a/.github/workflows/action-rest-api.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Create issue on commit - -on: [ push ] - -jobs: - create_issue: - runs-on: ubuntu-latest - permissions: - issues: write - steps: - - name: Create issue using REST API - run: | - curl --request POST \ - --url https://api.github.com/repos/${{ github.repository }}/issues \ - --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \ - --header 'content-type: application/json' \ - --data '{ - "title": "Automated issue for commit: ${{ github.sha }}", - "body": "This issue was automatically created by the GitHub Action workflow **${{ github.workflow }}**. \n\n The commit hash was: _${{ github.sha }}_." - }' \ - --fail