From 78c25f1e365c2493ec0d873eb25204e968646105 Mon Sep 17 00:00:00 2001 From: Justin Date: Fri, 11 Feb 2022 14:12:59 +1100 Subject: [PATCH] jaysues/c05-actions01 --- .github/workflows/greetings.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 0000000..36a3359 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,15 @@ +name: Greetings + +on: [pull_request, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.JAYSUES_GH_TOKEN }} + pr-message: 'Well done ${{ secrets.JAYSUES_NAME }} ! This is a nice PR'