From 6471151e96e8ac5468f022fe4853bfac440dc16f Mon Sep 17 00:00:00 2001 From: miromarszal Date: Mon, 26 Sep 2022 08:19:41 +0200 Subject: [PATCH 1/4] fix(snap): enable wayland (#1268) --- stores/snapcraft/insider/snap/snapcraft.yaml | 2 -- stores/snapcraft/stable/snap/snapcraft.yaml | 2 -- 2 files changed, 4 deletions(-) diff --git a/stores/snapcraft/insider/snap/snapcraft.yaml b/stores/snapcraft/insider/snap/snapcraft.yaml index f2e1e42..48e0cc4 100644 --- a/stores/snapcraft/insider/snap/snapcraft.yaml +++ b/stores/snapcraft/insider/snap/snapcraft.yaml @@ -77,12 +77,10 @@ apps: command: electron-launch $SNAP/usr/share/codium/bin/codium --no-sandbox desktop: usr/share/applications/codium.desktop environment: - DISABLE_WAYLAND: 1 GSETTINGS_SCHEMA_DIR: $SNAP/usr/share/glib-2.0/schemas url-handler: command: electron-launch $SNAP/usr/share/codium/bin/codium --open-url --no-sandbox desktop: usr/share/applications/codium-url-handler.desktop environment: - DISABLE_WAYLAND: 1 GSETTINGS_SCHEMA_DIR: $SNAP/usr/share/glib-2.0/schemas diff --git a/stores/snapcraft/stable/snap/snapcraft.yaml b/stores/snapcraft/stable/snap/snapcraft.yaml index b2b89f9..e93b555 100644 --- a/stores/snapcraft/stable/snap/snapcraft.yaml +++ b/stores/snapcraft/stable/snap/snapcraft.yaml @@ -77,12 +77,10 @@ apps: command: electron-launch $SNAP/usr/share/codium/bin/codium --no-sandbox desktop: usr/share/applications/codium.desktop environment: - DISABLE_WAYLAND: 1 GSETTINGS_SCHEMA_DIR: $SNAP/usr/share/glib-2.0/schemas url-handler: command: electron-launch $SNAP/usr/share/codium/bin/codium --open-url --no-sandbox desktop: usr/share/applications/codium-url-handler.desktop environment: - DISABLE_WAYLAND: 1 GSETTINGS_SCHEMA_DIR: $SNAP/usr/share/glib-2.0/schemas From fadc24f733bc67012b0e8272ec3a1d35595b90e3 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Mon, 26 Sep 2022 18:16:19 +0200 Subject: [PATCH 2/4] feat(issue): add app manager info --- .github/ISSUE_TEMPLATE/bug_report.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 88150c4..639406c 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -33,6 +33,7 @@ If applicable, add screenshots to help explain your problem. - OS: [e.g. Mac OS, Ubuntu 20.04, etc] - Architecture [e.g. x64, ia32, arm64] - Version [e.g. 1.33.0] + - App Manager [e.g. Winget, Homebrew, Snap, AUR, RPM, Nix, ...] **Additional context** Add any other context about the problem here. From 10143fdee25742c232d100cc2b717dce078151ca Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Wed, 5 Oct 2022 13:56:58 +0200 Subject: [PATCH 3/4] ci: stale issues [skip ci] --- .github/workflows/lock.yml | 5 +++-- .github/workflows/stale.yml | 21 +++++++++++++++++++++ 2 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index ee0eefb..3cc1bf6 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -1,8 +1,8 @@ -name: Lock Threads +name: Lock Issues on: schedule: - - cron: '0 0 * * Mon' + - cron: '0 2 * * *' jobs: lock: @@ -13,3 +13,4 @@ jobs: github-token: ${{ github.token }} issue-inactive-days: '90' pr-inactive-days: '90' + log-output: true diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000..8d8c9ff --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,21 @@ +name: Stale Issues +on: + schedule: + - cron: '0 1 * * *' + +permissions: + issues: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale + with: + days-before-stale: 90 + days-before-close: 30 + stale-issue-label: stale + stale-issue-message: > + This issue has been automatically marked as stale. **If this issue is still affecting you, please leave any comment**, and we'll keep it open. If you have any new additional information, please include it with your comment! + close-issue-message: > + This issue has been closed due to inactivity, and will not be monitored. If this is a bug and you can reproduce this issue, please open a new issue. From 6fa185f59e843b108a9b8c20e8b76d34a8b17222 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Wed, 5 Oct 2022 15:19:08 +0200 Subject: [PATCH 4/4] ci: stale only issues [skip ci] --- .github/workflows/stale.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 8d8c9ff..af53e08 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,10 +12,12 @@ jobs: steps: - uses: actions/stale with: - days-before-stale: 90 + days-before-stale: 180 days-before-close: 30 stale-issue-label: stale stale-issue-message: > This issue has been automatically marked as stale. **If this issue is still affecting you, please leave any comment**, and we'll keep it open. If you have any new additional information, please include it with your comment! close-issue-message: > This issue has been closed due to inactivity, and will not be monitored. If this is a bug and you can reproduce this issue, please open a new issue. + exempt-issue-labels: discussion + only-pr-labels: not-a-real-label