diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 132eedd94..faaa0c24b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: - name: Check formatting run: cargo fmt --all -- --check - name: Run Clippy - run: cargo clippy --all-features -- -D warnings + run: cargo clippy --workspace --all-features -- -D warnings - name: Reject uncommitted changes run: git diff --exit-code - name: Build documentation diff --git a/tools/automator/src/announcement.rs b/tools/automator/src/announcement.rs index 8c893fe5e..cc6aedf30 100644 --- a/tools/automator/src/announcement.rs +++ b/tools/automator/src/announcement.rs @@ -2,7 +2,7 @@ use std::{collections::HashSet, fmt::Write, path::PathBuf}; use anyhow::Context; use chrono::{Datelike, Utc}; -use map_macro::set; +use map_macro::hash_set; use octocrab::Octocrab; use tokio::{ fs::{self, File}, @@ -87,7 +87,7 @@ async fn generate_announcement( let mut pull_request_links = String::new(); let mut author_links = String::new(); - let author_blacklist = set! { + let author_blacklist = hash_set! { "hannobraun", "dependabot[bot]" };