From eac41bad5c332e947c44cd98ebe2faeda30e0347 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Mon, 26 May 2025 10:29:09 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8feature:=20Add=20TODO-Issues=20sync=20?= =?UTF-8?q?action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/todos.yml | 26 ++++++++++++++++++++++++++ public/stylesheets/style.css | 3 +++ 2 files changed, 29 insertions(+) create mode 100644 .github/workflows/todos.yml diff --git a/.github/workflows/todos.yml b/.github/workflows/todos.yml new file mode 100644 index 0000000..7e2aa27 --- /dev/null +++ b/.github/workflows/todos.yml @@ -0,0 +1,26 @@ +name: Sync TODOs with Issues + +on: + workflow_dispatch: + push: + paths-ignore: + - '**.md' + +jobs: + sync_todos: + runs-on: ubuntu-latest + permissions: + contents: write + issues: write + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Sync TODOs + uses: Solo-Web-Works/TODO-Sync@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + summary_file: TODO_SUMMARY.md + dry_run: false + commit: false diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index cafca68..0fccd2a 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -214,6 +214,9 @@ .mb-4 { margin-bottom: calc(var(--spacing) * 4); } + .contents { + display: contents; + } .flex { display: flex; }