summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-11-25 20:01:28 +0100
committerFlorian Bruhin <me@the-compiler.org>2020-11-25 22:34:18 +0100
commit31cd414664ed8600a82c09aec75b13b28befeb5b (patch)
tree86c5c0d3984d19c58861b3468f6a84fa143ea47e /.github
parenta686b75922b6c2f1568070dfe576646d6d3c2e76 (diff)
downloadqutebrowser-31cd414664ed8600a82c09aec75b13b28befeb5b.tar.gz
qutebrowser-31cd414664ed8600a82c09aec75b13b28befeb5b.zip
ci: Fix lint for docker workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/docker.yml41
1 files changed, 22 insertions, 19 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index a8b17528d..03510ad6e 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -7,7 +7,7 @@ on:
jobs:
docker:
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20.04
strategy:
matrix:
image:
@@ -36,23 +36,26 @@ jobs:
push: ${{ github.ref == 'refs/heads/master' }}
irc:
- runs-on: ubuntu-latest
+ timeout-minutes: 2
+ continue-on-error: true
+ runs-on: ubuntu-20.04
needs: [docker]
- if: "always() && github.repository_owner == 'qutebrowser'"
+ if: "always() && github.repository == 'qutebrowser/qutebrowser'"
steps:
- - name: Send success IRC notification
- uses: Gottox/irc-message-action@v1.1
- if: "needs.docker.result == 'success'"
- with:
- server: chat.freenode.net
- channel: '#qutebrowser-dev'
- 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@v1.1
- if: "needs.docker.result != 'success'"
- with:
- server: chat.freenode.net
- channel: '#qutebrowser-dev'
- nickname: qutebrowser-bot
- message: "[${{ github.workflow }}] \u00034FAIL:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})"
+ - name: Send success IRC notification
+ uses: Gottox/irc-message-action@v1.1
+ if: "needs.docker.result == 'success'"
+ with:
+ server: chat.freenode.net
+ channel: '#qutebrowser-dev'
+ 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@v1.1
+ if: "needs.docker.result != 'success'"
+ with:
+ server: chat.freenode.net
+ channel: '#qutebrowser-dev'
+ nickname: qutebrowser-bot
+ message: "[${{ github.workflow }}] \u00034FAIL:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})\n
+ linters: ${{ needs.linters.result }}, tests: ${{ needs.tests.result }}, tests-docker: ${{ needs.tests-docker.result }}, codeql: ${{ needs.codeql.result }}"