From 8063b8b5f68ecb448a66d59c323a2ffc273eef61 Mon Sep 17 00:00:00 2001 From: Daniel Marshall Date: Wed, 16 Feb 2022 00:39:24 +1100 Subject: [PATCH 1/2] marshalldaniel/c05-actions01 --- marshalldaniel/README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 marshalldaniel/README.md diff --git a/marshalldaniel/README.md b/marshalldaniel/README.md new file mode 100644 index 0000000..8f6e7ef --- /dev/null +++ b/marshalldaniel/README.md @@ -0,0 +1 @@ +Empty :) From 088fa5018b95af201284c33f5e587795a04220bd Mon Sep 17 00:00:00 2001 From: Daniel Marshall Date: Wed, 16 Feb 2022 01:04:59 +1100 Subject: [PATCH 2/2] adding workflow --- .../marshalldaniel-c05-actions01.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/marshalldaniel-c05-actions01.yml diff --git a/.github/workflows/marshalldaniel-c05-actions01.yml b/.github/workflows/marshalldaniel-c05-actions01.yml new file mode 100644 index 0000000..ff9a38f --- /dev/null +++ b/.github/workflows/marshalldaniel-c05-actions01.yml @@ -0,0 +1,19 @@ +on: + pull_request: + paths: + - 'marshalldaniel/*' + +jobs: + comment_pr: + runs-on: ubuntu-latest + name: Comment on all PRs targeting marshalldaniel/* + steps: + - name: Checkout + uses: actions/checkout@v1 + + - name: Comment PR + uses: thollander/actions-comment-pull-request@v1 + + with: + message: 'Well done ${{ secrets.MARSHALLDANIEL_NAME }} ! This is a nice PR.' + GITHUB_TOKEN: ${{ secrets.MARSHALLDANIEL_GHKEY }} \ No newline at end of file