From cb2c985966bf91ac9566cb84d8d8d81b3f8e0613 Mon Sep 17 00:00:00 2001 From: Arthur Vasconcelos Date: Mon, 10 Jul 2023 12:17:45 +0200 Subject: [PATCH] Add test workflow --- .github/workflows/test.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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..cf66dff3 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,25 @@ +name: 'Test' +on: + pull_request: + types: + - opened + - edited + branches: + - main + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: ./ + # - uses: kognity/pr-update-action@master + 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