From fe4e43c2a94c2c2ceaa2bdacaf722216c68d42fb Mon Sep 17 00:00:00 2001 From: Malik Parvez <84777619+malikparvez@users.noreply.github.com> Date: Tue, 28 Nov 2023 15:39:20 +0530 Subject: [PATCH] Create test_action.yml --- .github/workflows/test_action.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/test_action.yml diff --git a/.github/workflows/test_action.yml b/.github/workflows/test_action.yml new file mode 100644 index 0000000..0387ef7 --- /dev/null +++ b/.github/workflows/test_action.yml @@ -0,0 +1,15 @@ +name: check action test + +on: + pull_request_target: + types: + - opened + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Run a one-line script + run: echo Hello, world!