From 93a8c57dfcf4fe35c48cba57a2c1db494871b278 Mon Sep 17 00:00:00 2001 From: Owain van Brakel Date: Sun, 3 Nov 2019 20:52:02 +0100 Subject: [PATCH] actions: Greetings (#1856) --- .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 0000000000..4c84c98b3f --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,15 @@ +name: OpenOSRS - First interaction + +on: + issues: + types: [opened] + +jobs: + check: + runs-on: ubuntu-latest + + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: 'Thank you for opening your first issue! Please make sure to join our [Discord](https://discord.gg/openosrs).' \ No newline at end of file