aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-09-20 17:37:37 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-09-20 17:37:37 +0530
commit7b6c3f41f2db041416a7298a4762aa0f998a9314 (patch)
treee03e426c1250786dd3080a03db7dc8eef7dd7577 /.github
parentfix: Remove extra validation for serviceUrl for github since the url doesn't ... (diff)
downloadferdium-recipes-7b6c3f41f2db041416a7298a4762aa0f998a9314.tar.gz
ferdium-recipes-7b6c3f41f2db041416a7298a4762aa0f998a9314.tar.zst
ferdium-recipes-7b6c3f41f2db041416a7298a4762aa0f998a9314.zip
chore: removed 'first-time-contributors' GH workflow since that is not working [skip ci]
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ferdi-recipes-first-time-contributor.yml40
1 files changed, 0 insertions, 40 deletions
diff --git a/.github/workflows/ferdi-recipes-first-time-contributor.yml b/.github/workflows/ferdi-recipes-first-time-contributor.yml
deleted file mode 100644
index 7a1382a..0000000
--- a/.github/workflows/ferdi-recipes-first-time-contributor.yml
+++ /dev/null
@@ -1,40 +0,0 @@
1# Copied from: https://awesomeopensource.com/project/actions/github-script?categoryPage=7
2
3name: Welcome first time contributors
4
5on: pull_request
6
7jobs:
8 welcome:
9 runs-on: ubuntu-latest
10 steps:
11 - uses: actions/github-script@v4
12 with:
13 github-token: ${{ secrets.GITHUB_TOKEN }}
14 script: |
15 // Get a list of all issues created by the PR opener
16 // See: https://octokit.github.io/rest.js/#pagination
17 const creator = context.payload.sender.login
18 const opts = github.issues.listForRepo.endpoint.merge({
19 ...context.issue,
20 creator,
21 state: 'all'
22 })
23 const issues = await github.paginate(opts)
24
25 for (const issue of issues) {
26 if (issue.number === context.issue.number) {
27 continue
28 }
29
30 if (issue.pull_request) {
31 return // Creator is already a contributor.
32 }
33 }
34
35 await github.issues.createComment({
36 issue_number: context.issue.number,
37 owner: context.repo.owner,
38 repo: context.repo.repo,
39 body: `Welcome, ${ creator }! Thanks for contributing to Ferdi!`
40 })