summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortoofar <toofar@spalge.com>2023-07-16 13:28:12 +1200
committertoofar <toofar@spalge.com>2023-10-28 08:47:34 +1300
commitd14730cf154102e5e14ebd67df90bd8906ffd2e8 (patch)
tree0c725518235b5ee692712ef997a336841cb31d9b
parentfb63b87aae53384cb0853e6f19c1a390c1d83590 (diff)
downloadqutebrowser-d14730cf154102e5e14ebd67df90bd8906ffd2e8.tar.gz
qutebrowser-d14730cf154102e5e14ebd67df90bd8906ffd2e8.zip
remove IRC and CI jobs from branch
-rw-r--r--.github/workflows/ci.yml1
-rw-r--r--.github/workflows/nightly-test.yml24
2 files changed, 1 insertions, 24 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ccfa69ca3..f9f3e6bea 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -4,6 +4,7 @@ on:
branches-ignore:
- 'update-dependencies'
- 'dependabot/*'
+ - 'feat/test_pre_release_pyinstaller'
pull_request:
env:
FORCE_COLOR: "1"
diff --git a/.github/workflows/nightly-test.yml b/.github/workflows/nightly-test.yml
index 9ef914b9b..fe55f7c2e 100644
--- a/.github/workflows/nightly-test.yml
+++ b/.github/workflows/nightly-test.yml
@@ -89,27 +89,3 @@ jobs:
dist/qutebrowser-*-*.exe
if-no-files-found: error
- irc:
- timeout-minutes: 2
- continue-on-error: true
- runs-on: ubuntu-20.04
- needs: [pyinstaller]
- if: "always() && github.repository == 'qutebrowser/qutebrowser'"
- steps:
- - name: Send success IRC notification
- uses: Gottox/irc-message-action@v2
- if: "needs.pyinstaller.result == 'success'"
- with:
- server: irc.libera.chat
- channel: '#qutebrowser-bots'
- nickname: qutebrowser-bot
- message: "[${{ github.workflow }}] \u00033Success:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})"
- - name: Send non-success IRC notification
- uses: Gottox/irc-message-action@v2
- if: "needs.pyinstaller.result != 'success'"
- with:
- server: irc.libera.chat
- channel: '#qutebrowser-bots'
- nickname: qutebrowser-bot
- message: "[${{ github.workflow }}] \u00034FAIL:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})\n
- pyinstaller: ${{ needs.pyinstaller.result }}"