From 2240af5d5ac9bd767a8cdc6085ce0a20e8d62d42 Mon Sep 17 00:00:00 2001 From: Arthur Vasconcelos Date: Mon, 10 Jul 2023 10:24:51 +0200 Subject: [PATCH] Add test workflow --- .github/workflows/test.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..28b06e67 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,24 @@ +name: 'Test' +on: + pull_request: + types: + - opened + - edited + branches: + - main + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: ./ + with: + token: ${{ secrets.GITHUB_TOKEN }} + title: My new PR Title + title-prefix: PFX-999 + title-suffix: "[BOT]" + body: My new PR Body + body-prefix: Some prefix on the body + body-suffix: Some suffix on the body