Report Comment Tags #140
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Report Comment Tags | |
on: | |
schedule: | |
- cron: "0 9 * * 1" # Every Monday at 9:00 AM UTC | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
report_comment_tags: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Rust | |
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.81 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.2.2" | |
- name: Install fd-find | |
run: | | |
cargo install [email protected] | |
command -v fd | |
- name: Install ripgrep | |
run: | | |
cargo install [email protected] | |
command -v rg | |
- name: Notify Slack | |
run: ruby utils/slack-notifiers/comments.rb | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.STRATUS_SLACK_WEBHOOK_URL }} |