diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 1236c881..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: TEST_ReleaseCreation - -on: - workflow_dispatch: - -jobs: - say-hello: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Say Hello - run: echo "Hello, World!" - - - name: Get Current Date - id: current-date - run: echo "date=$(date +%Y-%m-%d)" >> $GITHUB_ENV - - - name: Create New JIRA Release - uses: satak/webrequest-action@master - with: - url: ${{ secrets.JIRA_RELEASE_WEBHOOK_URL }} - method: POST - payload: | - { - "data": { - "version": "testjavaversion#", - "startDate": "${{ env.date }}", - "date": "${{ env.date }}" - } - }