From 848210d3205285725c6f55cf2b2310f94d41fa75 Mon Sep 17 00:00:00 2001 From: Justin Carlson Date: Mon, 13 Feb 2023 12:55:50 -0500 Subject: [PATCH 1/4] Fix linter errors --- widget/src/SlackApp.tsx | 2 +- widget/src/components/icons/Alert.tsx | 4 ++-- widget/src/index.tsx | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/widget/src/SlackApp.tsx b/widget/src/SlackApp.tsx index 66abddae..bda5c3b1 100644 --- a/widget/src/SlackApp.tsx +++ b/widget/src/SlackApp.tsx @@ -305,7 +305,7 @@ const Unlinked = ({ /> ; } else if (error) { - content = { error } + content = { error }; } else { content = Loading...; } diff --git a/widget/src/components/icons/Alert.tsx b/widget/src/components/icons/Alert.tsx index 2826b01e..779a3ae4 100644 --- a/widget/src/components/icons/Alert.tsx +++ b/widget/src/components/icons/Alert.tsx @@ -1,5 +1,5 @@ -import * as React from 'react' -import { SVGProps } from 'react' +import * as React from 'react'; +import { SVGProps } from 'react'; export const Alert = (props: SVGProps) => ( Date: Mon, 13 Feb 2023 13:00:49 -0500 Subject: [PATCH 2/4] Run CI on all pull requests --- .github/workflows/lint.yml | 3 +-- .github/workflows/newsfile.yml | 1 - .github/workflows/tests.yml | 3 +-- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 53588c30..78202c37 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,7 +4,6 @@ on: push: branches: [ develop ] pull_request: - branches: [ develop ] jobs: lint: @@ -16,4 +15,4 @@ jobs: with: node-version: 16 - run: yarn --ignore-scripts --pure-lockfile --strict-semver - - run: yarn lint \ No newline at end of file + - run: yarn lint diff --git a/.github/workflows/newsfile.yml b/.github/workflows/newsfile.yml index 87a1285c..23c8dc5a 100644 --- a/.github/workflows/newsfile.yml +++ b/.github/workflows/newsfile.yml @@ -2,7 +2,6 @@ name: Newsfile on: pull_request: - branches: [ develop ] workflow_dispatch: jobs: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d89c8beb..188335b2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -4,7 +4,6 @@ on: push: branches: [ develop ] pull_request: - branches: [ develop ] jobs: unit: @@ -53,4 +52,4 @@ jobs: --env POSTGRES_PASSWORD=pass \ --env POSTGRES_INITDB_ARGS="--lc-collate C --lc-ctype C --encoding UTF8" \ postgres:11 - - run: yarn test:postgres \ No newline at end of file + - run: yarn test:postgres From 3bd88e2d046c5d924ec909f43903852933a1e359 Mon Sep 17 00:00:00 2001 From: Justin Carlson Date: Mon, 13 Feb 2023 13:00:58 -0500 Subject: [PATCH 3/4] Add changelog --- changelog.d/735.misc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/735.misc diff --git a/changelog.d/735.misc b/changelog.d/735.misc new file mode 100644 index 00000000..4f3f7224 --- /dev/null +++ b/changelog.d/735.misc @@ -0,0 +1 @@ +Fix lint errors and run CI on all PRs. From 46366cc0a58d5dc12c5935c134631d9dca586926 Mon Sep 17 00:00:00 2001 From: Justin Carlson Date: Wed, 15 Feb 2023 19:36:59 -0500 Subject: [PATCH 4/4] Fix changelog --- changelog.d/734.misc | 1 + changelog.d/735.misc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelog.d/734.misc diff --git a/changelog.d/734.misc b/changelog.d/734.misc new file mode 100644 index 00000000..45a2b342 --- /dev/null +++ b/changelog.d/734.misc @@ -0,0 +1 @@ +Add a new UI widget for linking and unlinking channels from within a Matrix room. diff --git a/changelog.d/735.misc b/changelog.d/735.misc index 4f3f7224..45a2b342 100644 --- a/changelog.d/735.misc +++ b/changelog.d/735.misc @@ -1 +1 @@ -Fix lint errors and run CI on all PRs. +Add a new UI widget for linking and unlinking channels from within a Matrix room.