From dc14ef815bf5101386cbe91cf3b8e16b5de5d9ce Mon Sep 17 00:00:00 2001 From: Alexandre Pasmantier Date: Sat, 3 Aug 2024 17:48:01 +0200 Subject: [PATCH] filter out main branch --- .github/workflows/ci.yml | 5 +---- .github/workflows/docs.yml | 8 +++++++- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f95bcf4..35338ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04, macos-12, windows-2022] - rev: [nightly, v0.9.5, v0.10.0] + rev: [v0.9.5, v0.10.0] include: - os: ubuntu-22.04 install-cargo: curl -sSf https://sh.rustup.rs | sh -s -- -y @@ -18,9 +18,6 @@ jobs: - os: macos-12 install-cargo: curl -sSf https://sh.rustup.rs | sh -s -- -y install-gg: cargo install grip-grab - - os: windows-2022 - install-cargo: curl -sSf https://sh.rustup.rs | sh -s -- -y - install-gg: cargo install grip-grab steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d18be8d..4e3b0f6 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -1,6 +1,12 @@ name: Generate docs -on: [push, pull_request] +on: + push: + branches-ignore: + - master + pull_request_target: + branches: + - master jobs: build-sources: