From 06094208b28beb4236d9fb417379dd0d62843a4b Mon Sep 17 00:00:00 2001 From: PYrO <62428872+Pyrodevelopment@users.noreply.github.com> Date: Thu, 2 Apr 2020 15:40:46 -0400 Subject: [PATCH] Create greetings.yml --- .github/workflows/greetings.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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 00000000..6b057877 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,21 @@ +- name: Cache + uses: actions/cache@v1.1.2 + with: + # A directory to store and save the cache + path: + # An explicit key for restoring and saving the cache + key: + # An ordered list of keys to use for restoring the cache if no cache hit occurred for key + restore-keys: # optionalname: Greetings + +on: [pull_request, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: 'Message that will be displayed on users'' first issue' + pr-message: 'Message that will be displayed on users'' first pr'