diff --git a/.github/workflows/check-pr-title.yml b/.github/workflows/check-pr-title.yml deleted file mode 100644 index 34ba077..0000000 --- a/.github/workflows/check-pr-title.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Check PR Title - -on: - pull_request: - branches: [main, merge-queue] - types: [edited, opened, reopened, synchronize] - -jobs: - test: - name: PR Title Check - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Check Title - uses: ExpediaGroup/github-helpers@v1 - with: - helper: check-pr-title - pull_number: ${{ github.event.pull_request.number }} - github_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index fe9f65c..6a891af 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,7 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Log Event - run: echo ${{ toJSON(github.event) }} + env: + GITHUB_CONTEXT: ${{ toJSON(github) }} + run: | + echo "$GITHUB_CONTEXT" - name: Checkout uses: actions/checkout@v4