Skip to content

Commit

Permalink
Closes #29
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and kaitj committed Nov 26, 2024
1 parent 44cd1e1 commit 7827093
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/checklist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
- name: Checkout
if: steps.check_labels.outputs.result == 'true'
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Extract checklist data
if: steps.check_labels.outputs.result == 'true'
Expand Down Expand Up @@ -57,9 +59,14 @@ jobs:
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Push to proceedings page
- name: Commit files
if: steps.check_labels.outputs.result == 'true'
run: |
git add ${{ env.file_name }}
git commit -m 'Closes #${{ github.event.issue.number }}'
git push
- name: Push changes
uses: ad-m/github-push-action@v0.8.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: development
79 changes: 79 additions & 0 deletions src/lib/data/entries/checklist_bids2table.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
{
"name": "bids2table",
"urls": [
{
"url_type": "Landing page",
"url": "https://github.com/childmindresearch/bids2table"
},
{
"url_type": "Documentation",
"url": "https://childmindresearch.github.io/bids2table/bids2table.html"
}
],
"documentation": {
"bronze": {
"1": true,
"2": false,
"3": true,
"4": true,
"5": false,
"6": false,
"7": false,
"8": true,
"9": false
},
"silver": {
"1": true,
"2": true,
"3": true,
"4": true,
"5": true,
"6": false
},
"gold": {
"1": false,
"2": false,
"3": false,
"4": true,
"5": false,
"6": false
}
},
"infrastructure": {
"bronze": {
"1": true,
"2": true,
"3": true,
"4": true,
"5": true,
"6": true,
"7": true
},
"silver": {
"1": false,
"2": true,
"3": true
},
"gold": {
"1": false,
"2": false,
"3": false,
"4": false,
"5": false
}
},
"testing": {
"bronze": {
"1": false,
"2": false
},
"silver": {
"1": false,
"2": false
},
"gold": {
"1": false,
"2": false
}
}
}

0 comments on commit 7827093

Please sign in to comment.