-
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
232 changed files
with
36,525 additions
and
19,869 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,59 @@ | ||
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: | ||
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 |
---|---|---|
@@ -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 }} |
Oops, something went wrong.