-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'w3f:master' into master
- Loading branch information
Showing
293 changed files
with
38,752 additions
and
28,044 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: Check application document | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: [opened, synchronize] | ||
|
||
jobs: | ||
discussion_private: | ||
if: | | ||
github.event.action == 'opened' && | ||
contains(github.event.pull_request.body, 'Project Abstract') && ( | ||
!contains(github.event.pull_request.body, '- [ ] I prefer the discussion') || | ||
( | ||
contains(github.event.pull_request.body, '- [ ] I prefer the discussion') && | ||
!contains(github.event.pull_request.body, '@_______:matrix.org') | ||
) | ||
) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add 'discussion private' label if the application is private | ||
uses: actions/github-script@v6 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: ["discussion private"] | ||
}) | ||
get_filename: | ||
if: contains(github.event.pull_request.body, 'Project Abstract') | ||
runs-on: ubuntu-latest | ||
outputs: | ||
filename: ${{ steps.files.outputs.added }} | ||
steps: | ||
|
||
- name: Get application filename # We assume there's only one | ||
id: 'files' | ||
uses: Ana06/[email protected] | ||
with: | ||
filter: 'applications/*.md' | ||
format: 'csv' | ||
|
||
parse_document: | ||
needs: get_filename | ||
if: needs.get_filename.outputs.filename | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Parse application file | ||
id: grant_parser | ||
uses: w3f/parse-grant-application-action@master | ||
with: | ||
path: "${{ github.workspace }}/${{ needs.get_filename.outputs.filename }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Broken Links | ||
|
||
on: | ||
repository_dispatch: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 1 * *' # Trigger the workflow every month | ||
|
||
jobs: | ||
build_and_check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Link Checker | ||
id: lychee | ||
uses: lycheeverse/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
with: | ||
args: --verbose --no-progress !./applications/* | ||
|
||
- name: Create Issue From File | ||
if: env.lychee_exit_code != 0 | ||
uses: peter-evans/create-issue-from-file@v4 | ||
with: | ||
title: Link Checker Report | ||
content-filepath: ./lychee/out.md | ||
labels: report, automated issue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: "CLA Assistant" | ||
on: | ||
issue_comment: | ||
types: [created] | ||
pull_request_target: | ||
types: [opened,closed,synchronize] | ||
|
||
# explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings | ||
permissions: | ||
actions: write | ||
contents: write | ||
pull-requests: write | ||
statuses: write | ||
|
||
jobs: | ||
CLAAssistant: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "CLA Assistant" | ||
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read and hereby sign the Contributor License Agreement.') || github.event_name == 'pull_request_target' | ||
uses: contributor-assistant/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# the below token should have repo scope and must be manually added by you in the repository's secret | ||
# This token is required only if you have configured to store the signatures in a remote repository/organization | ||
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
with: | ||
path-to-signatures: 'signatures/version1/cla.json' | ||
path-to-document: 'https://github.com/w3f/Grants-Program/blob/master/docs/Support%20Docs/T%26Cs.md' | ||
# branch should not be protected | ||
branch: 'master' | ||
allowlist: semuelle,takahser,Noc2,nikw3f,dsm-w3f,keeganquigley,laboon,github-actions[bot] | ||
|
||
# the followings are the optional inputs - If the optional inputs are not given, then default values will be taken | ||
remote-organization-name: w3f | ||
remote-repository-name: grants-cla | ||
#create-file-commit-message: 'For example: Creating file for storing CLA Signatures' | ||
#signed-commit-message: 'For example: $contributorName has signed the CLA in $owner/$repo#$pullRequestNo' | ||
custom-notsigned-prcomment: 'Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you sign our [Contributor License Agreement](https://github.com/w3f/Grants-Program/blob/master/docs/Support%20Docs/T%26Cs.md) before we can accept your contribution. Please submit the following text as a separate comment:' | ||
custom-pr-sign-comment: 'I have read and hereby sign the Contributor License Agreement.' | ||
#custom-allsigned-prcomment: 'pull request comment when all contributors has signed, defaults to **CLA Assistant Lite bot** All Contributors have signed the CLA.' | ||
lock-pullrequest-aftermerge: false # if you don't want this bot to automatically lock the pull request after merging (default - true) | ||
#use-dco-flag: true - If you are using DCO instead of CLA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
name: Ready for Review notification | ||
|
||
on: | ||
pull_request: | ||
types: [labeled] | ||
pull_request_target: | ||
types: [ready_for_review] | ||
|
||
jobs: | ||
send_matrix_review_msg: | ||
if: github.event.label.name == 'ready for review' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: fadenb/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Stale checker | ||
|
||
on: | ||
schedule: | ||
- cron: '0 7 * * *' # run at 7:00 UTC every day | ||
workflow_dispatch: | ||
|
||
jobs: | ||
mark_as_stale: | ||
if: github.repository_owner == 'w3f' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- id: stale | ||
uses: w3f/label-stale-pull-requests@main | ||
with: | ||
context: ${{ toJSON(github) }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- if: steps.stale.outputs.message != '' | ||
uses: fadenb/[email protected] | ||
with: | ||
homeserver: 'matrix.web3.foundation' | ||
token: ${{ secrets.MATRIX_TOKEN }} | ||
channel: ${{ secrets.MATRIX_CHANNEL_ID }} | ||
message: | | ||
${{ steps.stale.outputs.message }} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.