aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-06-08 04:42:07 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-06-08 04:42:07 +0530
commitfd833369ef9c46fd0cd5b53e9e9bb8fb52bf5c79 (patch)
treec98ee08986236bd6ee54aa211f0b74130944c830 /.github
parentFixed #1489: Steam links will now open in the external default browser. (diff)
downloadferdium-recipes-fd833369ef9c46fd0cd5b53e9e9bb8fb52bf5c79.tar.gz
ferdium-recipes-fd833369ef9c46fd0cd5b53e9e9bb8fb52bf5c79.tar.zst
ferdium-recipes-fd833369ef9c46fd0cd5b53e9e9bb8fb52bf5c79.zip
Removed the 'first-time-contributor' GH workflow due to a bug upstream.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/first-time-contributor.yml40
1 files changed, 0 insertions, 40 deletions
diff --git a/.github/workflows/first-time-contributor.yml b/.github/workflows/first-time-contributor.yml
deleted file mode 100644
index 8b4467b..0000000
--- a/.github/workflows/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 })