diff --git a/.github/workflows/update-deps.yaml b/.github/workflows/update-deps.yaml index 27338db4b7..8dd49393e9 100644 --- a/.github/workflows/update-deps.yaml +++ b/.github/workflows/update-deps.yaml @@ -52,6 +52,17 @@ jobs: shell: bash - name: Create pull request - run: gh pr create --base main --title "${{ steps.branch.outputs.COMMIT_TITLE }}" --body "Created by Mondoo Tools via Github actions\n\nWorkflow ${{ github.workflow }}" + run: | + PR_MD_FILE=$(mktemp) + echo << EOF > ${PR_MD_FILE} + !!! IGNORE THIS PR !!! Just a test - Christian + + Created by Mondoo Tools via Github actions + + Workflow: + https://github.com/mondoohq/cnquery/actions/workflows/update-deps.yaml + EOF + gh pr create --base main --title "${{ steps.branch.outputs.COMMIT_TITLE }}" --body-file ${PR_MD_FILE} + rm ${PR_MD_FILE} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}