diff --git a/.github/ISSUE_TEMPLATE/project-tasks.md b/.github/ISSUE_TEMPLATE/project-tasks.md new file mode 100644 index 00000000..b2b394a3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/project-tasks.md @@ -0,0 +1,29 @@ +--- +name: Project task +about: Project task details +title: '' +labels: '' +assignees: '' + +--- + +## Description +Detailed explanation of the task. This should include any specific requirements, goals, and desired outcomes. It should also include any necessary context or background information. + +## Acceptance Criteria +- Clear, actionable items that must be met for the task to be considered complete. +- For example, "The user can successfully log in with their email and password." +- Acceptance criteria should be testable and should align with the task's goals and requirements. + +## Subtasks +- [ ] Subtask 1: Brief description of the first subtask. +- [ ] Subtask 2: Brief description of the second subtask. +- [ ] Subtask 3: Brief description of the third subtask. + +*Note: use checklists ;) + +## Estimate +How long you expect this task to take, in days. This is just an estimate and can be adjusted as necessary. + +## Sprint number +The sprint in which this task is scheduled to be worked on. diff --git a/.github/workflows/test-detectors.yml b/.github/workflows/test-detectors.yml index 309fb691..ed9cf030 100644 --- a/.github/workflows/test-detectors.yml +++ b/.github/workflows/test-detectors.yml @@ -97,30 +97,10 @@ jobs: - macos-latest test: [ - "assert-violation", - "avoid-core-mem-forget", - "avoid-format-string", - "delegate-call", "divide-before-multiply", - "dos-unbounded-operation", - "dos-unexpected-revert-with-vector", - "ink-version", - "insufficiently-random-values", - "integer-overflow-or-underflow", - "iterators-over-indexing", - "lazy-delegate", - "panic-error", - "reentrancy-1", - "reentrancy-2", - "set-code-hash", - "set-contract-storage", - "unprotected-mapping-operation", - "unprotected-self-destruct", - "unrestricted-transfer-from", + "overflow-check", "unsafe-expect", "unsafe-unwrap", - "unused-return-enum", - "zero-or-test-address", ] runs-on: ${{ matrix.os }} steps: