Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into feat/option-set-sel…
Browse files Browse the repository at this point in the history
…ector-DHIS2-17872
  • Loading branch information
edoardo committed Feb 27, 2025
2 parents 51576aa + df9b6fc commit e59f784
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,16 @@ _reason_

### TODO

- [ ] _task_
- [ ] Tests added
- [ ] PRs for all affected apps created
- [ ] Storybook added
- [ ] _todo_

---

### Known issues

- [ ] _issue_
- [ ] _issue_

---

Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/check-tasklist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: GitHub Task List Checker
on:
pull_request:
types: [opened, edited, synchronize, reopened]

jobs:
task-list-checker:
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- name: Check for incomplete task list items
uses: Shopify/task-list-checker@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
8 changes: 8 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,12 @@ const { config } = require('@dhis2/cli-style')

module.exports = {
...require(config.prettier),
overrides: [
{
files: 'pull_request_template.md',
options: {
tabWidth: 2,
},
},
],
}

0 comments on commit e59f784

Please sign in to comment.