From c953b2f9f6716ed69cc2e6f2b504a4c649937b1b Mon Sep 17 00:00:00 2001 From: Vishaal Pal Date: Mon, 21 Feb 2022 18:05:33 +1100 Subject: [PATCH] Added GitHub actions workflow and README file in my folder on the playground repo. --- .../vishaalpal-gh-actions-workflow.yaml | 19 +++++++++++++++++++ vishaalpal/README.md | 1 + 2 files changed, 20 insertions(+) create mode 100644 .github/workflows/vishaalpal-gh-actions-workflow.yaml create mode 100644 vishaalpal/README.md diff --git a/.github/workflows/vishaalpal-gh-actions-workflow.yaml b/.github/workflows/vishaalpal-gh-actions-workflow.yaml new file mode 100644 index 0000000..969bcad --- /dev/null +++ b/.github/workflows/vishaalpal-gh-actions-workflow.yaml @@ -0,0 +1,19 @@ +on: + pull_request: + paths: + - 'vishaalpal/*' + +jobs: + comment_pr: + runs-on: ubuntu-latest + name: Comment on all PRs targeting vishaalpal/* + steps: + - name: Checkout + uses: actions/checkout@v1 + + - name: Comment PR + uses: thollander/actions-comment-pull-request@v1 + + with: + message: 'Well done ${{ secrets.VISHAALPAL_NAME }} ! This is a nice PR.' + GITHUB_TOKEN: ${{ secrets.VISHAALPAL_GH_PAT }} diff --git a/vishaalpal/README.md b/vishaalpal/README.md new file mode 100644 index 0000000..7fe715d --- /dev/null +++ b/vishaalpal/README.md @@ -0,0 +1 @@ +This is a README file for exercise c05-actions01 by vishaalpal.