Skip to content

Commit

Permalink
fix: action
Browse files Browse the repository at this point in the history
  • Loading branch information
mnenie committed Jul 5, 2024
1 parent a9f226d commit 704e7a0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 27 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/todos-to-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 'Create issues from TODOs'

on:
push:
branches:
- dev

jobs:
todo:
permissions:
pull-requests: read
contents: read
actions: read
issues: write
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3'
- name: 'TODO to Issue'
uses: 'alstr/todo-to-issue-action@v4'
with:
AUTO_ASSIGN: true
IGNORE: 'node_modules/, .vscode/.*'
26 changes: 0 additions & 26 deletions .github/workflows/todos.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/app/providers/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const router = createRouter({
});

router.beforeEach((to, from) => {
// TODO Add guards logic
// TODO: Add guards logic
// Needs to add guard auth logic in router

if (to.meta.requiresAuth === true) {
Expand Down

0 comments on commit 704e7a0

Please sign in to comment.